431
To type or not to type ?
(sh.itjust.works)
Post funny things about programming here! (Or just rant about your favourite programming language.)
tbh c/c++ type system is super fucked up
What the fuck is
unsigned long long int
just call itu64
Well it isn't always 64 bytes. Some architectures differ.
usize
thenyou can just use
unsigned long long
(drop the int) or, if it bothers you that much,uint64t
but keep in mind that yhe size ofunsigned long long
may vary depending on the architecture