
222 Programming in C
Every variable has a name, a value assigned to it and it
is to be stored in memory location. Hence, from the above,
we can say that only one value is assigned to a variable or
stored.
The way, we declare one-dimensional array in the same
way and can also declare two-dimensional array. Two-
dimensional array is a table that contains rows and
columns. For Example, int a[3][3]; It informs the compiler
that ‘a’ is an integer type of an array and its size is 9 integers.
This array is a three-by-three matrix. Its details are given in
the two-dimensional array and operations.
Similarly, one can declare the ...