Andrej Mitrovic Wrote: > I still giggle at the "long long" name. Good thing there are no floats > floats and char chars.
`long` is not a type, it's a modifier and - accidentally - a shortcut for `long int`. `long long` is a shortcut for `long long int`. `short` is a shortcut for `short int`. `signed` is a shortcut for `signed int`.
