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);}

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

Extracting a substring out of a string.
Merging two strings.
Comparing the two strings to define the larger one.
Partitioning the string into two strings.
Combining two strings.

ANSWER DOWNLOAD EXAMIANS APP