I can't seem to pass a 2-D array into a funciton properly. <br>
<br>
//These methods don't work <br>
int myarray[1][1] = {1, 1};<br>
void myfunction1(int thearray[]);<br>
void myfunction2(int thearray[][]);<br>
void myfunction3(int *thearray);<br>
<br>
None of these methods work. What to do?<br>
<br>
Thanks,<br>
Scott
<br>
//These methods don't work <br>
int myarray[1][1] = {1, 1};<br>
void myfunction1(int thearray[]);<br>
void myfunction2(int thearray[][]);<br>
void myfunction3(int *thearray);<br>
<br>
None of these methods work. What to do?<br>
<br>
Thanks,<br>
Scott