What would be the output of the following?
void main() { int a=10,b; b=a++ + ++a; printf("%d %d %d %d",b,a++,a,++a); }What would be the output of the following?
void main() { int i=7; printf("%old %old %old %old",i,i++,i--,i++); getch(); }
Reveal answer
Fill a bubble to check yourself