I have two arrays (dividend, divisor):
dividend[] = {1,2,0,9,8,7,5,6,6}; divisor[] = {9,8};
I need the result (dividend/divisor) as:
Other than that, have you considered using BigInt class (or the equivalent thing in your language) which will already does this for you?