What will be the output of the following program? void main() { int val=1234; int* ptr=&val; printf("%d %d",val,*ptr++); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following program? void main() { int val=1234; int* ptr=&val; printf("%d %d",val,*ptr++); }