Sail E0 Webinar
Question
Which of the following is correct way to define the function fun() in the below program?
#include
void main()
{
int a[3][4];
fun(a);
}
Options:
A .  void fun(int p[][4]){}
B .  void fun(int *p[4]){}
C .  void fun(int *p[][4]){}
D .  void fun(int *p[3][4]){}
E .  None of these
Answer: Option A

Submit Your Solution Below and Earn Points !
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers