...
The C99 intmax_t
and uintmax_t
types are capable of representing any value representable by any other integer types of the same signedness (see INT00-AC. Understand the data model used by your implementation(s)). This allows conversion between programmer-defined integer types (of the same signedness) and intmax_t
and uintmax_t
. For example:
...