I'm doing a project which requires really big numbers, up to 100 digits. I have read that java supports big integers (java.Math.BigInteger
), and I want to know if there is something like that in C++. So, here is my question: Is there a standard or non-standard c++ library which implements big integers?
Note: If there is no standard implementation for big integers, I would like a simple non-standard. Thanks in advance.