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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

Function is a block of statements that perform some specific task.
Function is a block of code that performs a specific task. It has a name and it is reusable.
Function is the fundamental modular unit. A function is usually designed to perform a specific task.
All of these

ANSWER DOWNLOAD EXAMIANS APP