What's the best way to declare an integer type which is always 4 byte on any platforms? I don't worry about certain device or old machines which has 16-bit int.
int
#include <stdint.h> int32_t my_32bit_int;
2.1m questions
2.1m answers
60 comments
57.0k users