Does gcc support 128-bit int on amd64?
How to define it?
How to use scanf/printf to read/write it?
Does gcc support 128-bit int on amd64?
How to define it?
How to use scanf/printf to read/write it?
GCC supports built-in __int128_t
and __uint128_t
types on 64-bit platforms, but it looks like formatting support for 128-bit integers is less common in libc.