array, where is explanation of how to declare those types ?
https://stackoverflow.com/q/61304133/9248466
multidimensional arrays are just arrays of arrays typedef int[3] sad; int arr[3]; -> arr is of type int[3] or sad or 3 elements of type int int arr2[5][3]; -> arr2 is of type int[5][3] or sad[5] or 5 elements of type sad, which is int[3].
Обсуждают сегодня