

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { if (7 & 8) printf("All"); if ((~7 & 0x000f) == 8) printf("that glitters is not gold. n"); } |
A. | All |
B. | All that glitters is not gold |
C. | that glitters is not gold |
D. | Compilation Error |
E. | None of these |
Answer» D. Compilation Error | |