What is the output of the following program? void main() { int m=10; int *p=&m; (*p)++; cout<<(*p)++; }
Reveal answer
Fill a bubble to check yourself
What is the output of the following program? void main() { int m=10; int *p=&m; (*p)++; cout<<(*p)++; }