MCQOPTIONS
Saved Bookmarks
| 1. |
Determine output:#include void main(){char *p = NULL;char *q = 0;if(p)printf(" p ");elseprintf("nullp");if(q)printf("q");elseprintf(" nullq");} |
| A. | q |
| B. | epends on the compiler |
| C. | nullq where x can be p or nullp depending on the value of NULL |
| D. | ullp nullq |
| Answer» E. | |