Page 1 of 1

What is the correct syntax to declare a function foo() which receives an array of structure in function?

Posted: Wed Jul 13, 2022 7:54 pm
by answerhappygod
a) void foo(struct *var);
b) void foo(struct *var[]);
c) void foo(struct var);
d) none of the mentioned