What is the output of the following program? void main(); { int a=5,b=5; cout<<a++; cout<< -> ; cout<<++a; cout<< -> ; cout<<b++; }
Reveal answer
Fill a bubble to check yourself
What is the output of the following program? void main(); { int a=5,b=5; cout<<a++; cout<< -> ; cout<<++a; cout<< -> ; cout<<b++; }