Q. What will be output if you will compile and execute the following c code? #include<stdio.h>int main(){int a=10;printf("%d %d %d",a,a++,++a); return 0;} (Solved)
1. 12 11 11
2. 12 10 10
3. 11 11 12
4. 10 10 12
- a. 12 11 11
1. 12 11 11
2. 12 10 10
3. 11 11 12
4. 10 10 12