int? *p? =? & ampx; ? //? Define a pointer p, so that the pointer points to the variable X.
*p? =? 100; //Assign a value to X through the pointer P ... The key to changing the value of the variable X to 100 is
* p = 100; Statement, meaning: assign the value of the variable x pointed by p to 100.