Hello,
I've got a 2 diemsional array that ments to represent this:
Name Address
A 1
B 2
C 3
I've got the following code written for this:
char * tableArray[10];
should that be:
char * tableArray[10][10];?
And I've got a pointer that populates only the name:
char * ptr = tableArray[sti];
But this doesnt work and not sure why.
My overall question is :
*Have I delcare an array that takes a stream of chars properly?