Split the main function given into multiple
functions.
You have been given a very simple program that performs basic
operations (addition, subtraction, editing) on two randomly
generated integer vectors. All functionality has been included in
main, causing code segments to be repeated as well as diminishing
the readability.
Rewrite the program by grouping calculations and related
operations into functions. In particular, your program should
include the following functions.
InitializeVectors: This is a void function that initializes the
two vectors by...