Can anyone please tell me how to multiply two number arrays in C? The number arrays are basically derived from two strings containing digits. eg: 123456 and 132465.
Edit: I had two string as S1 = "123456"
and S2="132546"
. I then converted these two strings into array of ints i.e. int IS1[6] and IS2[6] so that
IS1[1] = 1, IS1[2] = 2......
and
IS2[1] = 1, IS2[2] = 3.....
Now I have to mulitply these two arrrays. Please help.