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++); }
Reveal answer
Fill a bubble to check yourself
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++); }