The value of the pointer variable is a pointer, and the pointer is an address; The pointer variable points to a specific variable instead of an address.
Such as int * ptr
Ptr is a pointer, that is, ptr is actually an address, *ptr is the value of a pointer variable, and the pointer type is int *