Quote:
Originally Posted by gmann145
some work of i've added since starting, i keep getting an error that says cannot convert parameter 1 from 'char [20][17]' to 'char []'
|
I'm pretty sure the problem is in your showArray, where you pass it something of type char[][] but expect something of type char[]. Change the function to accept your list of arrays, and you should be fine (logic should all still work appropriately, I think).
For future reference, please provide a line number with errors; makes it easier for us to find out where they are
