1.

What will be the output of the program?

#include<stdio.h> int main() { float a=0.7; if(a < 0.7f) printf("C n"); else printf("C++ n"); return 0; } 

A. C
B. C++
C. Compiler error
D. Non of above
Answer» C. Compiler error


Discussion

No Comment Found