C Programming
What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);}
50, 13, 24, 50
50, 13, 11, 13
13, 10, 24, 50
50, 13, 24, 13
13, 13, 24, 13
ANSWER
DOWNLOAD EXAMIANS APP
↑