Hello!
I know that it is at least ugly to ask others to do the work for you, but I just have no time for this morning and I have no chance to deal with it ...
So assembler, tasm
.
Given 2 vectors of this type:
n1 dw 6,2,1,3,1,1 n2 dw 2,1,2,1,4,3
you need to write code that summarizes the elements of these 2 vectors in pairs, and writes the result to 3 vector.
that is, you need to display something like:
n3 8, 3, 3, 4, 5, 4
Help at least by sketching ...