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:
You can use Long division algorithm or the more general Polynomial Long Division.