int myvar = 6; int pointer = &myvar; // adress of myvar int value = *pointer; // the value the pointer points to: 6