1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
int n1 = 3, n2 = 4;
if (n1 && n2 == 1)
printf("Right n");
else
printf("Wrong n");
}

A. Compilation Error
B. Wrong
C. Runtime Error
D. Right
E. None of these
Answer» C. Runtime Error


Discussion

No Comment Found

Related MCQs