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
a) void foo(struct *var);
b) void foo(struct *var[]);
c) void foo(struct var);
d) none of the mentioned
b) void foo(struct *var[]);
c) void foo(struct var);
d) none of the mentioned