Write a program to add two vectors and store their result in a third
vector. You may use any base type, length, or initial data for the
original two vectors.
Tips:
- See the example which adds the elements of a vector in section 4.5.
- For two vectors to be added, they must be the same length. The
addition is done element-wise (i.e. -- parallel array processing).
This assignment is Level 2.