Pointers are declared using the declarator syntax:
* cv-qualifier-listopt dname
A pointer holds the address of an object. The full declaration, then, is:
decl-specifiers * cv-qualifier-listopt dname ;
A simple example of such a declaration is:
char *pch;
The preceding declaration specifies that pch
points to an object of type char.