Page 1 of 1

What is the correct syntax to send a 3-dimensional array as a parameter? (Assuming declaration int a[5][4][3];)

Posted: Wed Jul 13, 2022 7:54 pm
by answerhappygod
a) func(a);
b) func(&a);
c) func(*a);
d) func(**a);