Album sobre lenguaje C Language C Album | Page 14

4.- MULTIDIMENSIONAL ARRAYS Data structures of the array type can have more than one dimension, the use of "flat" arrays or two-dimensional arrays is quite common. 5.- ARRAYS OF STRUCTURES We have defined here an array of 100 elements, where each of them is a structure of the Item type composed of three variables, an int, a double and a string or array of 50 characters. When we talk about arrays we said that we could group, to form them, any type of variables, this is extendable to the structures and we can then group them in order, as elements of an array. Let's see an example: