Report Bug
Qus :

What is the output of this statement

printf("%d", (a++));

Qus

A. The value of (a + 1)
B. Error message
C. Garbage
D. The current value of a


Solution
D. The current value of a






Report Bug