Report Bug
Qus : What is the output of the following code: int x = 5; printf("%d", x++);
Qus What is the output of the following code: int x = 5; printf("%d", x++);

A. 4
B. 5
C. 6
D. Undefined


Solution
B. 5






Report Bug