int x, *p; //1 int, 1 pointer to int p = &x; //Assign p the address of x *p = 5; //Same as x = 5;