#include void main() { int i=1; printf("%d",++i); printf("%d",i++); } choose output of the above program
Reveal answer
Fill a bubble to check yourself
#include void main() { int i=1; printf("%d",++i); printf("%d",i++); } choose output of the above program