1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
float num = 0.3;
if (num == 0.3)
printf("Interview Mania");
else
printf("Advanced C Classes");
}

A. Advanced C Classes
B. Interview Mania
C. Compilation Error
D. Runtime Error
E. None of these
Answer» B. Interview Mania


Discussion

No Comment Found

Related MCQs