-
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");
}
-
- All
- All that glitters is not gold
- that glitters is not gold
- Compilation Error
- None of these
Correct Option: C
that glitters is not gold