

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> void main() { int arr[4] = {11, 12, 13, 14}; int *ptr = arr; printf("%p t%p", ptr, arr); } |
A. | Different memory address is printed |
B. | Compilation Error |
C. | Nothing |
D. | Same memory address is printed |
E. | None of these |
Answer» E. None of these | |