May be I am already reinventing the wheel.
Normally in C, if we have a=34 and b=5 we get a/b=6. But I need the same thing for 100 digit numbers. I wrote a class with name Int. which does a+b and a-b and a*b. (a,b,c are type Int)
I overloaded the operators << , >>, which will return number divided or multiplied with 10.
What is the best algorithm for division? (assuming I store numbers as strings with base 10".
Thanks.