What will be the output of the following C code? void main() { int t; char *pc=(char *)0; float *pf=(float *)0; t=(int)(pc+1) + (int)(pf+1); printf(%d,t); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following C code? void main() { int t; char *pc=(char *)0; float *pf=(float *)0; t=(int)(pc+1) + (int)(pf+1); printf(%d,t); }