

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code? #include <stdio.h> int main() { int m = 20, n = 22; int *Array[] = {&m, &n}; printf("%d", *Array[0]); return 0; } |
A. | 22 |
B. | Compilation Error |
C. | Undefined behaviour |
D. | 20 |
E. | Garbage value |
Answer» E. Garbage value | |