I have a vector with integers lets say {1, 2, 3, 4}.
How can I add a constant value 10 to each element to modify the vector to be {11, 12, 13, 14}.
And the same thing with divides if I wanted to divide each element by an int and modify the vector. I haven't been able to find solutions.