I currently have the dynamic array:
char *myData[500][10]; //myData is the name of an array of[500][10] pointers to type char.
I would like to create a static 2d array, 500 rows X 10 columns, each element storing memory for 40 characters.
Would below be the correct way of declaring that?
char myData[500][10][40];