1.

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

A. 6
B. -6
C. 4
D. -4
E. Compilation Error
Answer» E. Compilation Error


Discussion

No Comment Found

Related MCQs