36
Name before type: why 'age int' is better than 'int age'
(benhoyt.com)
This is a most excellent place for technology news and articles.
That's why you write
int *x, y, **z;
C doesn't write like "x is an int-pointer", rather it says "dereferencing x will get you an int".
100% and why I think
int*should be at the least a compiler warning, perhaps an outright error with pedantic enabled.