What is pointer : In C pointer is a variable that stores the address of another variable. In other word A pointer is a variable that refers to to address of a value.
Syntax : Data_type *ptr
The above syntax tells that ptr is a pointer variable and it holds the address number of a given data type.
Example :
READ MORE :