Report Bug
Qus :

What is the output of the following code:

int x = 5;

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


Qus निम्नलिखित कोड का परिणाम क्या है:

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


Solution
B. 5






Report Bug