MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include void foo(int*); int main() { int i = 10, *p = &i; foo(p++); } void foo(int *p) { printf("%d n", *p); } |
| A. | 10 |
| B. | Some garbage value |
| C. | Compile time error |
| D. | Segmentation fault |
| Answer» B. Some garbage value | |