passing an array to a function

Solutions on MaxInterview for passing an array to a function by the best coders in the world

showing results for - "passing an array to a function"
Laura
06 Oct 2018
1/**
2* myFunction - receives an array param of 10 int variables
3*/
4
5void myFunction(int param[10]) {
6   .
7   .
8   .
9}
similar questions
queries leading to this page
passing an array to a function