Macro Variable Arrays - rtsug
Arrays. An array is a collection of data that holds fixed number of values of same
type. ... In this example, mark[0]; If the size of an array is n, to access the last
element, (n-1) index is used. .... printf("test[%d][%d][%d] = %d
", i, j, k, test[i][j][k]);.