Exercise 10.04 Assuming v is a vector<double>, what, if anything, is wrong with calling accumulate(v.cbegin(), v.cend(), 0)? Solution The function call will truncate the doubles in the vector to ints becaause the accumulator is an integer.