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