There is such a type as "pointer to int," yes. You can create it specifically with:
Now, intptr actually IS a typename for "pointer to int". Of course I am not claiming that int pointers do not exist, just that the code fragment "int*" does not refer to the type "pointer to integer." It doesn't refer to a type at all. It is like a sentence fragment -- pretty much meaningless on its own. It simply ain't a type, way down at the very basic (syntactic) level.Code:typedef int *intptr;

