What is integer array in c programming?

Answer:

An integer array consists of only integer numbers, for instance, if you have the array of size 5 with interger type date int_array[5] it means that your first element int_array[0] is an integer number like 1, or 15 and so on. The same is true for other elements too; int_array[1] (int_array[2], int_array[3], int_array[4]) might be any integer element and so on.

First answer by Archangel dmitry. Last edit by Archangel dmitry. Contributor trust: 474 [recommend contributor recommended]. Question popularity: 1 [recommend question].