To print __int128
, you must use __int128_t
data type. Because there is no data type named __int128. At least I didn't find any till now.
And You must use "typecasting" every time in assigning value and outputting values.
you must use format specifier %lld
for __int128_t
and %llu
for…
Top comments (0)