Appearance
初始化
c
int arr1[3][2] = { {1,2}, {3,4}, {5,6} };
int arr2[3][2] = { [0][1] = 9, [2][1] = 8 }; // C99 Memberwise Initialization