Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - What is the difference between "the type of pointer" and "the type pointed by pointer" in C language? I am lost in the book.
What is the difference between "the type of pointer" and "the type pointed by pointer" in C language? I am lost in the book.
Internationalorganizations (same as international organizations)

a = 5;

Internationalorganizations (same as international organizations)

* p = & ampa;

P is a pointer, the type is int*, and it is an integer pointer.

The type he points to is integer a, that is, the type he points to is int.