Is intmax_t the same as long long int?

Viewed 14977

By POSIX, intmax_t designates a signed integer type capable of representing any value of any signed integer type.

Would it be correct that in C99/C11 that intmax_t is always the same size as long long int?

3 Answers
Related