Home » C Programming » Data Types » Question
  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");
    }
    1. Advanced C Classes
    2. Interview Mania
    3. Compilation Error
    4. Runtime Error
    5. None of these
Correct Option: A

Advanced C Classes



Your comments will be displayed only after manual approval.