| Liste des Groupes | Revenir à cl c |
On 20/03/2025 13:36, Scott Lurndal wrote:Using the defined width types is far better (e.g. uint64_t);>
even if the standard allows the type to not exist on a particular
implementation. No useful implementation would fail to define
uint64_t in these modern times.
The point was made earlier on that int64_t types are awkward to work
with; they need that stdint.h header to even exist, and they need those
ugly macros in inttypes.h to print out their values.
This is why it popular to just do:
>
typedef long long int i64;
stdint.h et al are just ungainly bolt-ons, not fully supported by the
language.
So somebody eschewing those ugly macros and using "%ld" to print an
Les messages affichés proviennent d'usenet.