Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Latest commit

History

History
38 lines (28 loc) 路 853 Bytes

cend.md

File metadata and controls

38 lines (28 loc) 路 853 Bytes

cend

Description : The function returns an iterator which is used to iterate container.

Notes:

  1. The iterator points to past-the-end element of the vector.
  2. Iterator cannot modify the contents of the vector.

Syntax : vectorname.cend()

Example:

// Demonstrates cbegin() 
#include <iostream>
#include <vector>

int main(){
    //declares an empty vector
    std::vector<int> vec;
    
    //inserting elements in vector
    vec.push_back(101);
    vec.push_back(12);
    vec.push_back(999);
    vec.push_back(143);
  
    //Displaying elements of  vector from the end
    std::cout << "Content of the vector \n";
    for (auto it = vec.cend() - 1;  it >= vec.begin(); --it){ 
        std::cout << *it << '\n'; 
    }
    return 0;
}

Run Code