I have to divide any number (no matter the size) by another number using Large Integer Division using Knuth's Algorithm D (The art of programming Volume 2), for example 74839234 by 72548.
I made two arrays to represent these numbers
n[] = {7,4,8,3,9,2,3,4}
d[] = {7,2,5,4,8}
I am trying to get an output like this:
q[] = {1,0,3,1}
r[] = {4,2,2,4,6}
I really don't know where to start with this. Any help or guidance would be appreciated!