Posts by Edson Fugio • 96 points
1 post
-
8
votes1
answer763
viewsA: How to perform operations with really large numbers in C/C++?
You need to add a lib to work with very large numbers, on Ubuntu I suggest the GMP. Install GMP with apt-get install libgmp-dev. An example of summation using libgmp: #include <stdio.h>…