cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Operating with bigger numbers under C++
Operating with bigger numbers under C++
Oct 14, 2011 at 8:02am UTC
Alexi Bahchevanov
(3)
How this is done? All my attempts lead to freezing the program...
Oct 14, 2011 at 8:09am UTC
Athar
(4466)
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.