MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include #define san 557 main() { #ifndef san printf("yes"); #endif printf("no"); } |
| A. | error |
| B. | yes |
| C. | no |
| D. | yesno |
| Answer» D. yesno | |