-
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);
}
-
- Different memory address is printed
- Compilation Error
- Nothing
- Same memory address is printed
- None of these
Correct Option: D
Same memory address is printed