Question: Create a function in C++ that subtracts two vectors.
The function returns a vector than can also be negative. Start the function off with:
vector add_vectors(vector first, vector second)
{
}
You need to prepare a program to subtract two vectors and provide all the code.