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.
Here is the code:
ARRAYPOI.C
#include <stdio.h>
|
Output will be displayed as:
ARRAYPOI.EXE

|
Recommend the tutorial |






Ask Questions? Discuss: C array of pointers
Post your Comment