Why use uint64_t instead of unsigned long long in c++, are there any benefits? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Why use uint64_t instead of unsigned long long in c++, are there any benefits?

Advantages of different unsigned integer types?

24th Jul 2019, 12:49 AM
Mike
Mike - avatar
1 Antwort
+ 2
It's ok I just found the answer :) A unsigned long long int is not standardised across all systems so the size can change depending on the system running the code. A uint64_t is standardised in c++ and guarantees 64bits of storage, you need to include stdint.h to use it though. Just in case anyone was interested.
24th Jul 2019, 1:13 AM
Mike
Mike - avatar