Pointers:
- Pointers in C language is a variable that stores/points to the address of another variable.
- A Pointer in C is used to allocate memory dynamically i.e. at run time.
- The pointer variable might belong to any of the data types such as int, float, char, double, short, etc.
Operators in pointers:
- * and & are the operators used in pointers.
- * gives us the value stored at a particular address whereas “ & “ gives us the address of the variable.

