This program illustrates the use of the STL accumulate() algorithm (expanded version) from to find the product of integers in a vector, using a programmer-defined function to compute the product of two integers. Press Enter to continue ... Here are the integer values in the vector: 2 4 6 8 10 Press Enter to continue ... The product of these values is 3840. Press Enter to continue ... The product of the middle three values and an intial value of -5 is -960. Press Enter to continue ... The product of the values in an empty range, with an intial value of 22, is 22. Press Enter to continue ...