CJCoding With Joseph
15per day

Element-wise Sum of Two Arrays

Two int arrays of equal length are given. Print a line where each position holds the sum of the matching elements, separated by single spaces.

For { 1, 2, 3 } and { 10, 20, 30 } the program prints '11 22 33'.

Expected Output:

11 22 33
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.