int vector_test(int, char**) { typedef std::vector dbl_vec_t; // (1) dbl_vec_t v1; // Empty vector of doubles. (1) v1.push_back(32.1); v1.push_back(40.5); // The rest follows ...