A
Q. What will the following code print?
Code:
int a = 5;
printf("%d %d", a++, ++a);
printf("%d %d", a++, ++a);
- Correct Answer - Option(C)
- Views: 19
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.