Tag

C language

All blogs tagged with C language

5
Articles
37,159
Total Views

Showing 5 of 5 articles

25
Sep
2023
2-D Array in C
3,850 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