#pop_back
Description : Remove elements of a vector from the end
Example :
//Declare the vector
std::vector<int> vector1;
//Function to pop_back values from the vector
vector1.pop_back();
#pop_back
Description : Remove elements of a vector from the end
Example :
//Declare the vector
std::vector<int> vector1;
//Function to pop_back values from the vector
vector1.pop_back();