Open In App

What is Array Decay in C++? How can it be prevented?

Last Updated : 23 Jul, 2025
Suggest changes
Share
117 Likes
Like
Report

What is Array Decay? 
The loss of type and dimensions of an array is known as decay of an array. This generally occurs when we pass the array into function by value or pointer. What it does is, it sends first address to the array which is a pointer, hence the size of array is not the original one, but the one occupied by the pointer in the memory.

C++
// C++ code to demonstrate array decay #include <iostream> using namespace std; // Driver function to show Array decay // Passing array by value void aDecay(int* p) {  // Printing size of pointer  cout << "Modified size of array is by "  " passing by value: ";  cout << sizeof(p) << endl; } int main() {  int a[7] = {  1, 2, 3, 4, 5, 6, 7,  };  // Printing original size of array  cout << "Actual size of array is: ";  cout << sizeof(a) << endl;  // Passing a pointer to array  aDecay(a);  return 0; } 

Output
Actual size of array is: 28 Modified size of array is by passing by value: 8 


In the above code, the actual array has 7 int elements and hence has 28 size. But by calling by value and pointer, array decays into pointer and prints the size of 1 pointer i.e. 8 (4 in 32 bit).

How to prevent Array Decay? 
A typical solution to handle decay is to pass size of array also as a parameter and not use sizeof on array parameters (See this for details)
Another way to prevent array decay is to send the array into functions by reference. This prevents conversion of array into a pointer, hence prevents the decay.

C++
// C++ code to demonstrate prevention of // decay of array #include<iostream> using namespace std; // A function that prevents Array decay // by passing array by reference void fun(int (&p)[7]) {  // Printing size of array  cout << "Modified size of array by "  "passing by reference: ";  cout << sizeof(p) << endl; } int main() {  int a[7] = {1, 2, 3, 4, 5, 6, 7,};  // Printing original size of array  cout << "Actual size of array is: ";  cout << sizeof(a) <<endl;  // Calling function by reference  fun(a);  return 0; } 

Output
Actual size of array is: 28 Modified size of array by passing by reference: 28 


In the above code, passing array by reference solves the problem of decay of array. Sizes in both cases is 28. 

We can also preserve the size of the array by passing it as a pointer to the array which have one more dimension as compared to our array

C++
// C++ code to demonstrate array decay #include <iostream> using namespace std; // Function to show that array decay happens // even if we use pointer void pDecay(int (*p)[7]) {  // Printing size of array  cout << "Modified size of array by "  "passing by pointer: ";  cout << sizeof(p) << endl; } int main() {  int a[7] = { 1, 2, 3, 4, 5, 6, 7 };  // Printing original size of array  cout << "Actual size of array is: ";  cout << sizeof(a) << endl;  // Passing a pointer to array  pDecay(&a);  return 0; } 

Output
Actual size of array is: 28 Modified size of array by passing by pointer: 8 

But in this case, we will have to treat the array in the function as 2d array and to access the value stored in the array, we have to access it like this: arr[0][1], arr[0][3], .. and so on.

 


Explore