Log In

What Will Be Output If You Will Compile And Execute The Following C Code 1

What will be output if you will compile and execute the following c code?

voidmain(){

 int i=4,x;

 x=++i + ++i + ++i;

 printf(“%d”,x);

}

(A)21(B)18(C)12(D)Compiler error(E)None of above