C++

int C; This is a standard variable declaration C, that contains a value as yet unknown of type int. int *C; This is a pointer C, that will point to an address in memory containing a value of type int. Each variable declared as a pointer must be preceded by an asterisk (*) the dereference operator. ................
................