What will be the output of the following program : void main() { int i=5; printf("%d %d %d %d %d",++i,i++,i++,i++,++i); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following program : void main() { int i=5; printf("%d %d %d %d %d",++i,i++,i++,i++,++i); }