How to initialize three dimensional char
array without pointers in c and access it?
I tried the following:
char card[1][3][15]={
{"iron","man"},
{"contagious","heide"},
{"string","middle"}
};
但我得到的是
**Error:too many initializers**
**Warning: Array is only partially initialized**