Arrays in C/C++
An array in C or C++ is a collection of items stored at contiguous memory locations and elements can be accessed randomly using indices of an array. They are used to store similar type of elements as in the data type must be the same for all elements. They can be used to store collection of primitive data types such as int, float, double, char, etc of any particular type. To add to it, an array in C or C++ can store derived data types such as the structures, pointers etc. Given below is the picturesque representation of an array.
Why do we need arrays?
We can use normal variables (v1, v2, v3, ..) when we have a small number of objects, but if we want to store a large number of instances, it becomes difficult to manage them with normal variables. The idea of an array is to represent many instances in one variable.
Array declaration in C/C++:

There are various ways in which we can declare an array. It can be done by specifying its type and size, by initializing it or both.
- Array declaration by specifying size
// Array declaration by specifying sizeintarr1[10];// With recent C/C++ versions, we can also// declare an array of user specified sizeintn = 10;intarr2[n];chevron_rightfilter_none - Array declaration by initializing elements
// Array declaration by initializing elementsintarr[] = { 10, 20, 30, 40 }// Compiler creates an array of size 4.// above is same as "int arr[4] = {10, 20, 30, 40}"chevron_rightfilter_none - Array declaration by specifying size and initializing elements
// Array declaration by specifying size and initializing// elementsintarr[6] = { 10, 20, 30, 40 }// Compiler creates an array of size 6, initializes first// 4 elements as specified by user and rest two elements as 0.// above is same as "int arr[] = {10, 20, 30, 40, 0, 0}"chevron_rightfilter_none
Advantages of an Array in C/C++:
- Random access of elements using array index.
- Use of less line of code as it creates a single array of multiple elements.
- Easy access to all the elements.
- Traversal through the array becomes easy using a single loop.
- Sorting becomes easy as it can be accomplished by writing less line of code.
Disadvantages of an Array in C/C++:
- Allows a fixed number of elements to be entered which is decided at the time of declaration. Unlike a linked list, an array in C is not dynamic.
- Insertion and deletion of elements can be costly since the elements are needed to be managed in accordance with the new memory allocation.
Facts about Array in C/C++:
- Accessing Array Elements:
Array elements are accessed by using an integer index. Array index starts with 0 and goes till size of array minus 1.
Example:
C
#include <stdio.h>intmain(){intarr[5];arr[0] = 5;arr[2] = -10;arr[3 / 2] = 2;// this is same as arr[1] = 2arr[3] = arr[0];printf("%d %d %d %d", arr[0], arr[1], arr[2], arr[3]);return0;}chevron_rightfilter_noneC++
#include <iostream>usingnamespacestd;intmain(){intarr[5];arr[0] = 5;arr[2] = -10;// this is same as arr[1] = 2arr[3 / 2] = 2;arr[3] = arr[0];cout << arr[0] <<" "<< arr[1]<<" "<< arr[2] <<" "<< arr[3];return0;}chevron_rightfilter_noneOutput:5 2 -10 5
- No Index Out of bound Checking:
There is no index out of bounds checking in C/C++, for example, the following program compiles fine but may produce unexpected output when run.
C
// This C program compiles fine// as index out of bound// is not checked in C.#include <stdio.h>intmain(){intarr[2];printf("%d ", arr[3]);printf("%d ", arr[-2]);return0;}chevron_rightfilter_noneC++
// This C++ program compiles fine// as index out of bound// is not checked in C.#include <iostream>usingnamespacestd;intmain(){intarr[2];cout << arr[3] <<" ";cout << arr[-2] <<" ";return0;}chevron_rightfilter_noneOutput:
2008101287 4195777
- In C, it is not compiler error to initialize an array with more elements than the specified size. For example, the below program compiles fine and shows just Warning.
#include <stdio.h>intmain(){// Array declaration by initializing it with more// elements than specified size.intarr[2] = { 10, 20, 30, 40, 50 };return0;}chevron_rightfilter_noneWarnings:
prog.c: In function 'main': prog.c:7:25: warning: excess elements in array initializer int arr[2] = { 10, 20, 30, 40, 50 }; ^ prog.c:7:25: note: (near initialization for 'arr') prog.c:7:29: warning: excess elements in array initializer int arr[2] = { 10, 20, 30, 40, 50 }; ^ prog.c:7:29: note: (near initialization for 'arr') prog.c:7:33: warning: excess elements in array initializer int arr[2] = { 10, 20, 30, 40, 50 }; ^ prog.c:7:33: note: (near initialization for 'arr')Note: The program won’t compile in C++. If we save the above program as a .cpp, the program generates compiler error “error: too many initializers for ‘int [2]'”.
- The elements are stored at contiguous memory locations
Example:
C
// C program to demonstrate that array elements are stored// contiguous locations#include <stdio.h>intmain(){// an array of 10 integers. If arr[0] is stored at// address x, then arr[1] is stored at x + sizeof(int)// arr[2] is stored at x + sizeof(int) + sizeof(int)// and so on.intarr[5], i;printf("Size of integer in this compiler is %lu\n",sizeof(int));for(i = 0; i < 5; i++)// The use of '&' before a variable name, yields// address of variable.printf("Address arr[%d] is %p\n", i, &arr;[i]);return0;}chevron_rightfilter_noneC++
// C++ program to demonstrate that array elements// are stored contiguous locations#include <iostream>usingnamespacestd;intmain(){// an array of 10 integers. If arr[0] is stored at// address x, then arr[1] is stored at x + sizeof(int)// arr[2] is stored at x + sizeof(int) + sizeof(int)// and so on.intarr[5], i;cout <<"Size of integer in this compiler is "<<sizeof(int) <<"\n";for(i = 0; i < 5; i++)// The use of '&' before a variable name, yields// address of variable.cout <<"Address arr["<< i <<"] is "<< &arr;[i] <<"\n";return0;}chevron_rightfilter_noneOutput:Size of integer in this compiler is 4 Address arr[0] is 0x7ffd636b4260 Address arr[1] is 0x7ffd636b4264 Address arr[2] is 0x7ffd636b4268 Address arr[3] is 0x7ffd636b426c Address arr[4] is 0x7ffd636b4270
Array vs Pointers
Arrays and pointer are two different things (we can check by applying sizeof). The confusion happens because array name indicates the address of first element and arrays are always passed as pointers (even if we use square bracket). Please see Difference between pointer and array in C? for more details.
What is vector in C++?
Vector in C++ is a class in STL that represents an array. The advantages of vector over normal arrays are,
- We do not need pass size as an extra parameter when we declare a vector i.e, Vectors support dynamic sizes (we do not have to initially specify size of a vector). We can also resize a vector.
- Vectors have many in-built function like, removing an element, etc.
- To know more about functionalities provided by vector, please refer vector in C++ for more details.
Related Articles:
- Array is C/C++ | Set 2
- Initialization of multidimensional arrays in C/C++
- How to print size of array parameter in C++?
- Properties of arrays in C language
- Maximum element in an array
- Array sum in C++ STL
- Sort an array in C++
Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
Recommended Posts:
- Split the given array into K sub-arrays such that maximum sum of all sub arrays is minimum
- Merge k sorted arrays | Set 2 (Different Sized Arrays)
- Count of possible arrays from prefix-sum and suffix-sum arrays
- Find sub-arrays from given two arrays such that they have equal sum
- Generate all possible sorted arrays from alternate elements of two given sorted arrays
- Maximum OR sum of sub-arrays of two different arrays
- Why is a[i] == i[a] in C/C++ arrays?
- Minimum LCM and GCD possible among all possible sub-arrays
- C | Arrays | Question 2
- C | Arrays | Question 1
- Associative arrays in C++
- Arrays in Java
- Introduction to Arrays
- Sum of XOR of all sub-arrays of length K
- How to join two Arrays using STL in C++?


