Common computer-jargon term to refer to arbitrary-precision math and data-types. The term "arbitrary-precision" refers to the ability of a machine to perform numerical computations whose precision is limited only by the available memory.
Questions tagged [bignum]
362 questions
-4
votes
1 answer
Big Number Implementation in c++
I am trying to implement Big Number in c++ with strings.
First I am doing operator overloading for '+' operator, addition for digit length > 3 is coming correct but for less than 3 is giving garbage value after result. I am not understanding why…

avinashse
- 1,440
- 4
- 30
- 55
-4
votes
2 answers
how to find factors of very big number
i need to find factors of very big number say (10^1000) . i.e if input is 100 then output should be 10 10 because (10*10=100) .this is very simple if N<=size of (long) but i want to know how it will be possible to find factors of very big number say…

Altaf Hussain
- 25
- 1
- 1
- 6