How to handle big integers in C ++
why we need to understand this topic ?
If we take a look on the number limits of integer data type of C++, you'll find something like:
int : approx 109
long int : approx 1012
long long int : approx 1018
that means we can only store a maximum of 10...
swayam-blog.hashnode.dev6 min read