

MCQOPTIONS
Saved Bookmarks
1. |
What is the correct syntax to declare a function fun() which receives an array of structure in function? |
A. | void fun(struct *num[]); |
B. | void fun(struct num); |
C. | void fun(struct *num); |
D. | All of above |
E. | None of these |
Answer» D. All of above | |