MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> int *p; int main() { if (p == 0) printf("Hey n"); return 0; } |
| A. | Hey |
| B. | Compilation Error |
| C. | Hey only if NULL value is 0 |
| D. | Nothing |
| E. | None of these |
| Answer» D. Nothing | |