1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
char n1 = 'N';
char n2 = 'M';
int n3 = n1 + n2 % 3 - 3 * 2;
printf("%d n", n3);
}

A. 74
B. N
C. M
D. Garbage value
E. Compilation Error
Answer» B. N


Discussion

No Comment Found

Related MCQs