MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int main() { int n = -7; if (!0 == 1) printf("Yes n"); else printf("No n"); } |
| A. | Compilation Error |
| B. | Runtime Error |
| C. | Garbage value |
| D. | Yes |
| E. | No |
| Answer» E. No | |