A
Q. What is the output?
Code:
int a = 5;
int b = ++a + a++;
printf("%d", b);
int b = ++a + a++;
printf("%d", b);
- Correct Answer - Option(B)
- Views: 15
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.