Hi
I would like to create a 2d array that hold strings, however I cant figure out how to do this in lite-c. In c I can do something like this:
char a[2][10];
strcpy(a[0], "123456789");
strcpy(a[1], "hello");

Thanks