int billy [][][] = { 16, 2, 77, 40, 12071 };
test.c:1: error: elements of array `billy' have incomplete type test.c:1: warning: array 'billy' assumed to have one element test.c:1: error: storage size of `billy' isn't known |
int multiArray[][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}, {10, 11, 12}};
|
|
|
|
|
|
|
|
|
|