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);}
void fun(int *p[3][4]){}
void fun(int *p[][4]){}
void fun(int *p[4]){}
None of these
void fun(int p[][4]){}
ANSWER
DOWNLOAD EXAMIANS APP
↑