For this assignment, write a parallel program in C++ using
OpenMP for vector addition. Assume A, B, C are three vectors of
equal length. The program will add the corresponding elements of
vectors A and B and will store the sum in the corresponding
elements in vector C (in other words C[i] = A[i] + B[i]). Every
thread should execute an approximately equal number of loop
iterations.
As an input vector A, initialize its size to 10,000 and elements
from...