Initializes a multi-dimensional array.
Chapter 4 programming exercise 8th in C and pointer:
1/* 2 ** Initialize an array, its specific location is initialized to a specific value 3 */4 5 static unsigned char char_value [3] [6] [4] [5] = {6 {// 0 7 {// 0, 0 8 {0} // 0, 0, 0 9} 10}, 11 {// 112 {// 1,013 {0} // 1,116, 014}, 15 {// {0, 017 {0, ''}/118, 1,220}, 19 {// 122 {0}, //, 021 {0}, //, {0, 0, 0, 'A'}, // 223, 324 {0, 0, 0, 0, 'x }, 25 {// 1,326 {0}, // 128, 027 {0}, // 229, {0, 0, 0xf3 }, 30 {// 1,431 {0}, // 133, 032 {0}, //, {0, 0, 0, '\ n, 234}, 35 {// 1,536 {0} // 240, 037} 38}, 39 {// 2,041 {// {0} //, 042 }, 43 {// 2,144 {0}, // 0320, 045 {0, 0, 146} // 2,248,}, 47 {// {0 }, // 150, 049 {0, '0'}, // 251, {0, 0, '\ ''}, //, {0, '\ 121'} // 352, 2,354}, 53 {// 2,457 {0} //, 055}, 56 {// {0}, // 2, 4, 058 {0}, // 159, 260 {0}, // 361, {0, 0, '3', 3 }, 62 {// 2,563 {0}, // 165, 064 {0}, // 266, {0}, //, {0, 0,125} // 367,} 68} 69 };