MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int m = 10; int *ptr1 = &m; int **ptr2 = &ptr1; printf("%d %d %d n", m, *ptr1, **m); } |
| A. | 10, 10, 10 |
| B. | Same memory address |
| C. | Different memory address |
| D. | Garbage value |
| E. | Compilation Error |
| Answer» F. | |