Report Bug
Qus :

What will be output if you compile and execute the following ā€˜C’ code?

void main()
{
int i=4,x;
x=++i + ++i + ++i;
printf("%d",x);
}

Qus

A. 21
B. 18
C. 19
D. Compilation error


Solution
C. 19






Report Bug