C language

Pointer variable or simply pointer are the special types of variables that holds memory address rather than data, that is, a variable that holds address value is called a pointer variable or simply a pointer.

Declaration of Pointer

Dereference operator(*) are used for defining pointer variable

data_type* pointer_variable_name;
int* p;

Return to top