Answer: How to print __int128 in g++?

mdsiaofficial

Md Shoriful Islam Ashiq

Posted on June 4, 2024

Answer: How to print __int128 in g++?

To print __int128, you must use __int128_tdata 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 %llufor…

💖 💪 🙅 🚩
mdsiaofficial
Md Shoriful Islam Ashiq

Posted on June 4, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related