Students who are preparing for Information Technology can discuss their problems & share thier knowledge on topics like Java/Oracle /C/C etc.Join this group and start discussion.
What will be the output of the following C code? void main() { int a; char *pr; int Num=288; pr=(char *)&Num; for(a=0;a<2;a++) printf(%d ,*pr++); } (A) 288 0 (B) 32 0 (C) 0 1 (D) Compilation error