Tag

c language

All blogs tagged with c language

4
Articles
33,735
Total Views

Showing 4 of 4 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