Home » C Programming » Structures » Question
  1. What is the correct syntax to declare a function fun() which receives an array of structure in function?
    1. void fun(struct *num[]);
    2. void fun(struct num);
    3. void fun(struct *num);
    4. All of above
    5. None of these
Correct Option: C

void fun(struct *num);



Your comments will be displayed only after manual approval.