|
|
|
|
|
by kevin_thibedeau
1521 days ago
|
|
Even C isn't consistent about this: int * a, b; // "Property" of the variable
typedef int * pint;
pint x, y; // Property of the type
This has created so much bad legacy code where pointer typedefs are created for no good reason. |
|