While writing some code for a fellow forum member I came across an interesting problem. Is it possible to make a two dimensional array of character strings (effectively a 3d array)? It seems like it should be possible but I don't know and I'm not with my arduino to try it.
Heres what I think it should look like
char* tricks[][] = {
{"first", "second", "third", "fourth", "fifth", "sixth", "seventh"},
{"first", "second", "third", "fourth", "fifth", "sixth", "seventh"},
{"first", "second", "third", "fourth", "fifth", "sixth", "seventh"},
{"first", "second", "third", "fourth", "fifth", "sixth", "seventh"}
};
The reason I want to do it like this is so that I can do a for loop and call a random string from each group (basically)