|
|
|
|
|
by onre
550 days ago
|
|
Dunno how this is supposed to be worded, but it's because the "pointerhood" is tied to the variable being declared, not the type itself. This becomes obvious when you declare multiple variables at once. char* cat, dog; /* one char pointer, one char */
char *cat, *dog; /* two char pointers */
|
|