1.

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

A. Compilation Error
B. False...
C. True...
D. It will print nothing.
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs