1.

What will be the output of the following C code?
 #include <stdio.h>
void main()
{
int p = 6;
if (p < 2);
printf("Hey...");

}

A. 2
B. 6
C. Compilation Error
D. Hello
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs