Pointers Easy Tutorial

Pointers Easy Tutorial

pointer is a variable used to store the address of another variable., We need to declare a pointer before using the pointer in the program, just Like any variable or constant.

How to declare the pointer variable?

The general syntax of a pointer variable declaration is mentioned below;

type * variable name;

The basic program of Pointers