1.

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");elseprintf("ELSE");}(A) ELSE IF(B) IF(C) ELSE

Answer»


Discussion

No Comment Found

Related InterviewSolutions