MCQOPTIONS
Saved Bookmarks
| 1. |
What is the Error of this program? #include #define CONDITION(x) printf("letsfindcourse"); int main() { CONDITION(0); return 0; } |
| A. | letsfindcourse |
| B. | Compilation error |
| C. | Runtime error |
| D. | None of the above |
| Answer» C. Runtime error | |