volatile int x = 0x0; 
volatile int * ptr;

main ()
{
ptr = &x; 
ptr++; // This will increment pointer by 2, as pointer is of int type (size=2)
}