1.

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

A. -7
B. Compilation Error
C. -5
D. Runtime Error
E. None of these
Answer» D. Runtime Error


Discussion

No Comment Found

Related MCQs