Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - What is the type of int**? INT * is the pointer type, pointing to "&; Variable ",then what is the type of int**, pointing to"&; Pointer variable "
What is the type of int**? INT * is the pointer type, pointing to "&; Variable ",then what is the type of int**, pointing to"&; Pointer variable "
Int* is the pointer type of integer, int** is the pointer type of integer pointer, and variables of type int* can be assigned as the address of variables. Variable, then a type of variable in * * can be assigned as the address of an integer pointer variable, that is&; Integer pointer variable.

So your understanding is basically correct.