MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this program? #include #include int main() { int *j = (int*)malloc(4 * sizeof(int)); *j = 15; free(j); printf("%d", *j); return 0; } |
| A. | Compilation error |
| B. | Some Garbage value |
| C. | Nothing prints |
| Answer» C. Nothing prints | |