Link to home
Start Free TrialLog in
Avatar of nickphson
nickphson

asked on

Divide big integer in VC++ 6.0

How to divide two "big integer" ?
Example : 9087766655421 / 278058
I store "big integer" in Link List.

Some code example if you have .

thanks !
Avatar of sunnycoder
sunnycoder
Flag of India image

You can store numbers in a double and use a normal divide.

double a = 9087766655421;
double  b = 278058;
double c = a/b;
ASKER CERTIFIED SOLUTION
Avatar of prakash2007
prakash2007
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
you can code it yourself. I coded multiply of big numbers in my first year of university. my application was able to multiply numbers that have even 2000 digits. code it yourself or google to find one.
Regards