+ 1
Is there some data type greater than unsigned long long int to store integers?
I want to know basically of BIGINT OR GMP IN C++14
2 Respuestas
0
No, but you can use a string, fill it with numbers and then work with it, but you'll need a function to treat each character in your string as numbers but it really isn't hard :)
0
Thanks kornhe for answering and I know this method of strings I am not able to use BIGINT in c++14 on online compiler like hackerrank so basically I want to know that 😃