Question: /* 10. Complete the following function that adds up all the positive values in an integer vector.For example, if vector vec contains the elements 3,
/*
10. Complete the following function that adds up all the positive values in an
integer vector.For example, if vector vec contains the
elements 3, -3, 5, 2, 1, and 2, the call sum_positive(vec)
would evaluate to 12, since 3 + 5 + 2 + 2 = 12. The function returns zero
if the vector is empty.The function does not affect the contents of the vector.
*/
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
