In C itβs possible to perform arithmetic operations such as addition, subtraction etc. on the pointers. Example: int x = 10; //created at address 1000 int *y = &x ; // y is created at address 2000 and holds 1000 β address of x y++; //y becomes 1004