Arrays

I have a problem and it asks "Place your function prototype for fillArray here", I'm not really sure what it's asking.
1
2
3
4
5
6
7
int some_func(int);    // prototype/declaration

int some_func(int val)     // definition/implementation
{
    return val+1;
}
Topic archived. No new replies allowed.