C array of pointers
In this section, you will learn how to create array of pointers.
A pointer is a variable that contains the memory location of another
variable. The values you assign to the pointers are memory addresses of other
variables (or other pointers). A running program gets a certain space in the
main memory.
Syntax of declaring a pointer:
data_type_name * variable name
First of all, specify the data type of data stored in the location, which is to identified
by the pointer. The asterisk tells the compiler that you are creating a pointer
variable. Then specify the name of variable.
You can see in the given example, we have created an array of pointers of maximum
size 3. Then we have assigned the objects of array pointer.
The address of the
variable.
array[0] = &x;
array[1] = &y;
array[2] = &z;
Here is the code:
ARRAYPOI.C
#include <stdio.h>
|
Output will be displayed as:
ARRAYPOI.EXE