c++ back functiomn code example
Example: back() in c++
// my linkedin : https://www.linkedin.com/in/vaalarivan-prasanna-3a07bb203/
vector<int> vec = {1, 2, 5, 6};
int ele = vec.back(); //ele = 6
//back() method does delete the last element from the vector, it just returns\n
//the last element.