Tag

arrays in c

All blogs tagged with arrays in c

1
Articles
3,840
Total Views

Showing 1 of 1 articles

25
Sep
2023
2-D Array in C
3,840 views

A two-dimensional (2D) array is an arrangement of items in C that are arranged in a grid and are individually identified by a pair of indices: a row index and a column index. A 2D array can be compared to a table or matrix that has rows and columns. A 2D array in C is declared, initialised, and used as follows:

Translate Page