With 2D arrays, we can now group together all of the same type data arrays into a single data structure. In our case, we can group all the integer fields into a 2D array called folio. Each row of the structure represents the information for one stock, and the columns of the array represent the fields.
int folio[MAX_STOCKS][MAX_COLS];
*************Insert Images************