Sujet : Why we don't have suffix for char, short ?
De : thiago.adams (at) *nospam* gmail.com (Thiago Adams)
Groupes : comp.lang.cDate : 30. Nov 2024, 17:06:47
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vifd6o$1qke4$1@dont-email.me>
User-Agent : Mozilla Thunderbird
My guess...
When these suffixes were created this effect was not visible because of integer promotions.
For instance (I am using cast to work as suffix)
(short)(123) + 1
123 short is promoted to int anyway.