MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code? #include int *i; int main() { if (i == NULL) printf("true\n"); return 0; } |
| A. | true |
| B. | true only if NULL value is 0 |
| C. | Compile time error |
| D. | Nothing |
| Answer» B. true only if NULL value is 0 | |