MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int main() { int forth = 4, fifth = 5; #ifdef next forth = 5; fifth = 4; #endif printf("%d, %d", forth, fifth); } |
| A. | 4 |
| B. | 5 |
| C. | 4, 5 |
| D. | 5, 4 |
| E. | None of these |
| Answer» D. 5, 4 | |