VOOZH about

URL: https://www.geeksforgeeks.org/c/difference-between-pointer-to-an-array-and-array-of-pointers/

⇱ Difference between pointer to an array and array of pointers - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Difference between pointer to an array and array of pointers

Last Updated : 11 Jul, 2025

Pointer to an array is also known as array pointer. We are using the pointer to access the components of the array.

 int a[3] = {3, 4, 5 }; 
 int *ptr = a; 

We have a pointer ptr that focuses to the 0th component of the array. We can likewise declare a pointer that can point to whole array rather than just a single component of the array. Syntax:

data type (*var name)[size of array];

Declaration of the pointer to an array:

// pointer to an array of five numbers
 int (* ptr)[5] = NULL; 

The above declaration is the pointer to an array of five integers. We use parenthesis to pronounce pointer to an array. Since subscript has higher priority than indirection, it is crucial to encase the indirection operator and pointer name inside brackets. Example: 

Output:
1
2
3
4
5

"Array of pointers" is an array of the pointer variables. It is also known as pointer arrays. Syntax:

int *var_name[array_size];

Declaration of an array of pointers:

 int *ptr[3];

We can make separate pointer variables which can point to the different values or we can make one integer array of pointers that can point to all the values. Example: 

Output:
Value of arr[0] = 1
Value of arr[1] = 2
Value of arr[2] = 3

Example: We can likewise make an array of pointers to the character to store a list of strings. 

Output:
amit
amar
ankit
akhil
Comment