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

Latest commit

 

History

History
16 lines (10 loc) · 447 Bytes

rend.md

File metadata and controls

16 lines (10 loc) · 447 Bytes

rend

Description : list::rend() is an inbuilt function in C++ STL that returns a reverse iterator which points to the position before the beginning of the list.

Example :

    std::list<int> lis = { 109, 206, 303, 401, 506 }; 
  
    std::cout << "The list in reverse order: "; 
  
    for (auto it = lis.rbegin(); it != lis.rend(); ++it) 
        std::cout << *it << " "; 
  

Run Code