1.

What will be printed if we execute following program ? #include<stdio.h> int main() { float a = 0.3; if(0.3 > a) printf("True\n"); else printf("False\n"); return 0; }

A. None of these
B. True
C. True False
D. False
Answer» E.


Discussion

No Comment Found