I'm not sure what the proper name for this is, it's so hard to google:
In C, C++, etc. you can tell the compiler that a literal number is not what it appears to be (, that is, X, float instead of double, unsigned long instead of int:
var d = 1.0; // double
var f = 1.0f; // float
var u = 1UL; // unsigned long
etc.
Is there a list of these? I'm specifically looking for a suffix for short or Int16.