I came across the data type int32_t in a C program recently. I know that it stores 32 bits, but don\'t int and int32 do the same?
int32_t
int
int32
The _t data types are typedef types in the stdint.h header, while int is an in built fundamental data type. This make the _t available only if stdint.h exists. int on the other hand is guaranteed to exist.