MCQOPTIONS
Saved Bookmarks
| 1. |
# include<stdio.h>#include<stdlib.h>void fun(int *a){ a = (int*)malloc(sizeof(int));}int main(){ int *p; fun(p); *p = 6; printf("%dn",*p); return(0);}37.During preprocessing, the code #include gets replaced by the contents of the file stdio.h. Which is true? |
| A. | During linking the code #include replaces by stdio.h |
| B. | Yes |
| C. | During execution the code #include replaces by stdio.h |
| D. | During editing the code #include replaces by stdio.h |
| Answer» C. During execution the code #include replaces by stdio.h | |