MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the code below? int main() { int i = 10; int *const p = &i; foo(&p); printf("%d n", *p); } void foo(int **p) { int j = 11; *p = &j; printf("%d n", **p); } |
| A. | 11 11 |
| B. | Undefined behaviour |
| C. | Compile time error |
| D. | Segmentation fault/code-crash |
| Answer» B. Undefined behaviour | |