MCQOPTIONS
Saved Bookmarks
| 1. |
Which of the following is correct way to define the function fun() in the below program?#includevoid main(){int a[3][4];fun(a);} |
| A. | oid fun(int p[][4]){} |
| B. | oid fun(int *p[4]){} |
| C. | oid fun(int *p[][4]){} |
| D. | oid fun(int *p[3][4]){} |
| E. | one of these |
| Answer» B. oid fun(int *p[4]){} | |