What will be the output of the program if the array begins at address 65486?
#includestdio.h
int main()
{
int arr[] = {12, 14, 15, 23, 45};
printf("%u, %u\n", arr, &arr);
return 0;
}

Posted on by