MCQOPTIONS
Saved Bookmarks
| 1. |
Predict the output of the program ? #include<stdio.h> int main() { if(printf("ABC")) printf("True"); else printf("False"); return 0; } |
| A. | ABC |
| B. | ABCTrue |
| C. | ABCFalse |
| D. | True |
| Answer» C. ABCFalse | |