Hi,
I've almost worked through my problem previously posted, now I'm having trouble with a 2d array.
char table[10][50];
table[1234567]['A']='Test';
I get a segmentation fault for that. The number is an id number, I have no need to have it positioned in that spot of the array.
So how can I do this, What I need to do with it once it works is get to the A through the id number.
table[1234567]['A']
Something like that.
Thanks,
Tony