Hi there,
I've a question regarding large numbers(integers) and how to store them in a user-defined class.
I need a program that will be able to store as many integers as I want, without using any external libraries like bignum, or gmp.
I know that I am going to have to deal with classes.
Thank you!
Last edited on
You only mention "storing" them. If that's all you need to do, then just store them as a std::string.