Multiplication of two integers, like
a = 38473847837483473894283749832938293872389472847389243847347
b = 92892382019283923829302392830923890
stored as
a[0] = 3, a[1] = 8 ...
I want to multiply these two over using efficient algorithm (note I stored them in array A and array B). And I want store result in RES[].
How can I do, just give me a algorithm.