Guest User

Untitled

a guest
Jul 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. int vector_test(int, char**)
  2. {
  3. typedef std::vector<double> dbl_vec_t; // (1)
  4. dbl_vec_t v1; // Empty vector of doubles. (1)
  5. v1.push_back(32.1);
  6. v1.push_back(40.5);
  7. // The rest follows ...
Add Comment
Please, Sign In to add comment