12345678910



Question 1: What will be the output of the program if the array begins 1200 in memory?

#include<stdio.h>

int main()
{
int arr[]={2, 3, 4, 1, 6};
printf("%u, %u, %u ", arr, &arr[0], &arr);
return 0;
}

1. 1200, 1202, 1204
2. 1200, 1200, 1200
3. 1200, 1202, 1200
4. 1200, 1204, 1208