Report Bug
Qus :

What will be the output of the following code?

int x = 5;
printf("%d", ++x);

Qus

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


Solution
C. 6






Report Bug