The question arose about functions and arrays. Suppose I have it
int example1(unsigned int hold[], size) { .... }
and then in another function that I want to call in my example 1, but instead of passing an array, I want to pass an integer, so this
int example2(unsigned int hold) { int i; for(i = 0; i < 10; i++) example1(hold,i); }
how can i make it work
c function arrays
user9339978
source share