[Solved] how to store a 1000 digit number c++? [duplicate]
[ad_1] You have to use bignum arithmetic which isn’t included in standard C++ library so you either have to write it yourself or use some third party library. About storing specifically – well it could be stored as an array (or vector) of unsigned ints less than 10000 for example which will represent it’s numbers … Read more