MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the program? #include int main() { float a=0.7; if(a < 0.7f) printf(“Cn”); else printf(“C++n”); return 0; } |
| A. | C |
| B. | C++ |
| C. | Compiler error |
| D. | Non of above |
| Answer» C. Compiler error | |