View Single Post
Team Leader
18Jun2007,21:49  
DaWei's Avatar
If you're learning how to do it, see division algorithms such as are used in assembly language programs (repeated subtractions combined with shifts). One of the problems with replicating these operations in C is the lack of access to the carry/borrow flag.

If you're just wanting to do it, check out a bignum library.