In C Programming, an array can be defined as number of memory locations, each of which can store the same data type and which can be referenced through the same variable name.

Arrays can be of two types i.e. One Dimensional Array (such as lists) and Multidimensional Arrays (such as tables or matrices) wikipedia.

An array is defined in a very straightforward syntax in C as: int age [5];

An array is a collective name given to a group of similar quantities or values. These similar quantities could be percentage marks of 100 students, number of chairs in home, or salaries of 300 employees or ages of 25 students. Thus an array is a collection of similar elements. These similar elements could be all integers or all floats or all characters etc.

Usually, the array of characters is called a “string”, where as an array of integers or floats is called simply an array. All elements of any given array must be of the same type i.e. we can’t have an array of 10 numbers, of which 5 are int and 5 are float.

Arrays and pointers have a special relationship as arrays use pointers to reference memory locations.

Table of Contents

How to Declare an Array in C?

Arrays should be declared before they can be used in the C program. Standard array declaration is as

Here data_type specifies the variable type of the element which is going to be stored in the array. In C programming language we can declare the array of any basic standard types. For example

Here we declared array height of double data type and size 10, array width of float data type and size 20, array min of int data type and size 9, array name of char data type and size 5.

How to View and Access Array Elements?

In C programming, array elements are accessed with indices which starts at position 0. The elements of the array occupy adjacent locations in memory. C treats the name of the array as if it were a pointer to the first element. This is important in understanding how to do arithmetic with arrays. Any item in the array can be accessed through its index, and it can be accessed any where from with in the program. So

Here, variable m will have the value of first item of array height.

The following C program will declare an array of five integers and prints all the elements of the array.

How to Initialize Arrays in C?

In C, arrays can be initialized in two ways 1) initializing while declaration 2) initializing after declamation. The initializing values are enclosed within the curly braces in the declaration.

Here is an example which declares and initializes an array of five elements of type int. Array can also be initialized after declaration. Look at the following C code which demonstrate the declaration and initialization of an array.

Initializing Array While Declaration

You can initialize an array during its declaration by providing a list of initial values enclosed in curly braces {}. Here’s an example:

Initializing Array After Declaration

Initializing and Printing Arrays using for Loops

Here is a C program that will demonstrate how we can use for loop to initialize and print the elements of an array.

The output of the above C program is as below:

How to Determine the Size of Array in C?

To determine the size of an array in terms of bytes, use the sizeof operator. For example:

So the size of array is 40 bytes as each int can take up 4 bytes each. In order to determine the length of array we can divide the size of array with the size of first element in array (size of array type i.e. int, char etc).

The above situation is only valid if you are directly working with array in same function. However, as arrays are passed onto other functions as pointers so the above method will fail. This is because sizeof() will return the size of the pointer NOT the array.

The following program demonstrates the use of sizeof operator and prints the size of arrays before passing to to a function and with in the functions.

How to Perform Read/Write Operations on Arrays?

Here is a more complex program that demonstrates how to read, write and traverse integer arrays in C programming. There is also another source code to compare two arrays in C.

How to Copy one Array into Another?

There is no such statement in C language which can directly copy an array into another array. So we have to copy each item separately into another array.

In summary, arrays offer a straightforward means to work with multiple elements of the same type. By utilizing an array variable, we can efficiently manage, modify, and store numerous elements of a consistent type, accessing them easily through indices.

Multidimensional Arrays in C

In C programming you can have arrays of any dimensions. To understand the concept of multidimensional arrays let us consider the following 4 X 5 matrix

Row number (i)Column numbers (j)
01135-9-6
156-8724
2-8921245
31013-1045

Let us assume the name of matrix is x.

To access a particular element from the array we have to use two subscripts on for row number and other for column number the notation is of the form X [i] [j] where i stands for row subscripts and j stands for column subscripts. Thus X [0] [0] refers to 10, X [2] [1] refers to 16 and so on In short multidimensional arrays are defined more or less in the same manner as single dimensional arrays, except that for subscripts you require two squire two square brackets. We will restrict our decision to two dimensional arrays.

Here are are some typical two-dimensional array definitions:

The first example defines tables as a floating point array having 50 rows and 50 columns. The total number of elements in this array are 2500 (50 x 50).

The second declaration example establishes an array line of type character with 24 rows and 40 columns. The number of elements is 1620 (24 x 40).

Consider the following two dimensional array definition

Here the first subscript stands for the row number and second one for column number. First subscript ranges from 0 to 2 and there are altogether 3 rows second one ranges from 0 to 3 and there are altogether 4 columns.

Alternatively the above definition can be defined and initialized as

Here the values in first pair of braces are initialized to elements of first row, the values of second pair of inner braces are assigned to second row and so on. Note that outer pair of curly braces is required. If there are two few values within a pair of braces the remaining elements will be assigned as zeros.

Here is a sample program that stores roll numbers and marks obtained by a student side by side in matrix

The above example illustrates how a two dimensional array can be read and how the values stored in the array can be displayed on screen.

Here are some of the C Programs that use array. You can study these programs to further understand the concept of arrays and how to use them in your C programs.