I'm trying to pass a 2d and single dimmension array of strings to a function but its not working.
my arrays are:
string 2Darray[100][100];
String 1Darray[100];
Now the function:
void check(string temp2D[100][100], string temp1D[100]);
When I call it:
check(2Darray,1Darray);
I've tried it other ways ad they all don't work. Thanks in advance for any answers!
2Darrayneeds to betwoDarray, etc.