1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
float num1 = 0.2;
if (num1 == 0.2)
{
printf("Equal n");
}
else
{
printf("Not Equal n");
}
}

A. Compilation Error
B. 0.2
C. Equal
D. Not Equal
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs