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); }
Reveal answer
Fill a bubble to check yourself
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); }