1.

What will be the output of the following C code?
 #include <stdio.h>
void main()
{
int n = 15;
double m = n++ + ++n + n--;
printf("%d", n);
}

A. 12
B. 14
C. 16
D. 18
E. 20
Answer» D. 18


Discussion

No Comment Found

Related MCQs