Operating with bigger numbers under C++

How this is done? All my attempts lead to freezing the program...
Bigger than what? double supports very large numbers at the cost of precision and long long is a >=64 bit integer.
GCC also supports __float128 and __int128.

If you need more, you can use GMP for arbitrary precision.
http://gmplib.org/
Topic archived. No new replies allowed.