Here's a chunk of the function I wrote. File[120][80], an array of lines and characters, is passed in.
void Print(char File[120][80], int Lines, char* COMMAND) {
//Print whole file.
if (!spaces(COMMAND)) {
int i = 0;
for (i; i<Lines; i++) {
printf("%i===%s", i+1, File[i]);
}
}
}
The result of running it (for a 4-line file) is:
1===Line 1.
2===3===4===
So it seems only the first index is actually being passed.