C Programming
Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements?
void fun(int p[][4]){}
void fun(int *p[4]){}
void fun(int *p[][4]){}
void fun(int *p[3][4]){}
None of these
ANSWER
DOWNLOAD EXAMIANS APP
↑