Array of Pointers 

An array of pointers would be an array that holds memory locations. An array of pointers is an indexed set of variables in which the variables are pointers (a reference to a location in memory). Some people confused by it hold address of other variable but it is not true .

 Syntax: 

data_type_name * variable 

Example

 int *ptr[MAX];