C++ Pointers

Declare a pointer variable. Assign the address of a variable to the pointer. Access the value of the variable using the pointer. Change the value of the variable using the pointer. Declare and initialize a pointer to a specific memory address. Allocate memory for a variable using the "new" keyword. De-allocate memory for a variable using the "delete" keyword.