You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Arrays can also be defined using pointers. For example, an array can consist of pointers. This definition opens a 2-dimensional array in a different way.
chararray1[4][4];
// Instead of this, you can write:
char*array2[4];
// Here, array1 is a 4x4 array, while array2 is a one-dimensional array consisting of pointers.
// If we assign a 4-element array to each column of array2, we can access each element as if it were a 2-dimensional array.