I want to create a program which can handle integers greater than what C++ int
can store.
I want to first store the integer that the user inputs in a integer
array such that each digit of the input number is stored in each array slot,say, 968, it should be stored finally in the array such that arr[0] is 9, arr[1] is 6, arr[2] is 8
. Instead, this time user will be inputting a very huge number
with say, 1000 digits in it and I have to somehow get it to be stored in an integer array, with each digit of the number in each array element as cited above.
So can someone please explain the usage of big int library?