char (* ( *f())[])(); How to evaluate that kind of expression??
when i am trying to compile the kernel i am getting following error.. [root@vijay linux-2.6.3]# make menuconfig HOSTCC scripts/fixdep scripts/fixdep.c: In function ‘traps’: scripts/fixdep.c:359:2: warning: dereferencing type-punned pointer will break strict-aliasing rules scripts/fixdep.c:361:4: warning: dereferencing type-punned pointer will break strict-aliasing … Continue reading
How to find the size of Dynamic array.
Dear all In question no. 12 of assignment Ist int ten =10; int two=2; printf(“%d minus%d=%d\n”,ten); printf(“%dminus %d=%d\n”,ten,2,ten-two); printf(“%dminus%d is %d\n”,ten); return 0; i was surprised to c the result of 3rd printf statement. Ist and IInd printf statemnt result … Continue reading