1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int n = 1;
if (n++)
printf("True n");
else if (n == 2)
printf("False n");
}

A. True
B. False
C. Compilation Error
D. Runtime Error
E. None of these
Answer» B. False


Discussion

No Comment Found

Related MCQs