This program illustrates the use of the STL partial_sum() algorithm (default version) from to find the running totals of integer values stored in a vector of integers and write those sums out to the same vector of integers. Press Enter to continue ... Here are the initial values in the vector: 1 2 3 4 5 Press Enter to continue ... And here is the same vector after the partial sums have been computed and the original values overwritten: 1 3 6 10 15 Press Enter to continue ... The iterator p returned by the algorithm points to the end of the ouput container. Press Enter to continue ...