Open In App

C | Data Types | Question 9

Output of following program?




#include<stdio.h>
int main()
{
    float x = 0.1;
    if ( x == 0.1 )
        printf("IF");
    else if (x == 0.1f)
        printf("ELSE IF");
    else
        printf("ELSE");
}

(A) ELSE IF
(B) IF
(C) ELSE

Answer: (A)
Explanation:
Quiz of this Question

Article Tags :