Should I use cstdint?
Actually, I would suggest using both. If you want something that is definitely 32-bits unsigned, use uint32_t. For example, if you are implementing a “struct” to represent an external object whose specification defines one of its fields as 32 bits unsigned. If you want something that is the “natural word size of the machine”, use … Read more