Answers for "how to get the first value in vector cpp"

C++
0

c++ vector get first element

// vector::front
#include <iostream>
#include <vector>

int main () {

  std::vector<int> myvector;
  myvector.push_back(78);
  myvector.push_back(16);
  // now front equals 78, and back 16
  
  int first = myvector.front(); //first = 78
  std::cout << "the first value in vector is " << first << std::endl;
  return 0;
}
Posted by: Guest on March-11-2021

Code answers related to "how to get the first value in vector cpp"

Browse Popular Code Answers by Language