MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output for the following code snippet? #include #define A -B #define B -C #define C 5 int main() { printf("The value of A is %dn", A); return 0; } |
| A. | The value of A is 4 |
| B. | The value of A is 5 |
| C. | Compilation Error |
| D. | Runtime Error |
| Answer» C. Compilation Error | |