Definition: A pointer is a variable that stores the address of another variable. Unlike other variables that hold values of a certain type, pointer holds the address of a variable. For example, int a=10; int *p; p=&a; Here, p is pointer variable which stores the address of variable. Variable a stores the value 10. Address […]