brownie124
Programmer
Hi,
I have a 2 dimensional String array, something like this:
I am trying trying to get those values into 2 dimensional character array. I have it define in my class as:
I am having a hard time getting anything into foochar. How would I do this?
Thanks in advance.
- Michael
I have a 2 dimensional String array, something like this:
Code:
String foostring[][] = { {"hello"}, {"there"} };
I am trying trying to get those values into 2 dimensional character array. I have it define in my class as:
Code:
char foochar[][];
I am having a hard time getting anything into foochar. How would I do this?
Thanks in advance.
- Michael