C Programming
Which of the following is correct way to define the function fun() in the below program?#includevoid main(){ int a[3][4]; fun(a);}

void fun(int *p[4]){}
void fun(int *p[3][4]){}
None of these
void fun(int *p[][4]){}
void fun(int p[][4]){}

ANSWER DOWNLOAD EXAMIANS APP