MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include <stdio.h> #define foo(m, n) m * n = 10 int main() { printf("in main\n"); } |
| A. | In main |
| B. | Compilation error as lvalue is required for the expression m*n=10 |
| C. | Preprocessor error as lvalue is required for the expression m*n=10 |
| D. | None of the mentioned |
| Answer» B. Compilation error as lvalue is required for the expression m*n=10 | |