Hi there,
I have an array of strings defined in the following way;
string wordbank[]={"yes", "no", "hello", "goodbye"};
My problem is I would like to create a seperate array of characters for each element of that array.
Something of the form; char *word_0[]={'y','e','s'}
The things I have tried so far seem to all lead to "can't change string variable type to char *". All help appreciated :)
Peter