What will be the output of the program if the array begins 1200 in memory?
#include
int main()
{
int arr[]={2, 3, 4, 1, 6};
printf("%u, %u, %u\n", arr, &arr[0], &arr);
return 0;
}
Answer: B
No answer description available for this question.