unordered_multimap cend() function in C++ STL Last Updated : 08 Aug, 2018 Suggest changes Share Like Article Like Report The unordered_multimap::cend() is a built-in function in C++ STL which returns a constant iterator pointing to the position after the last element in the container or to the position after the last element in one of its bucket. Syntax: unordered_multimap_name.cend(n) Parameters: The function accepts one parameter. If a parameter is passed, it returns a constant iterator pointing to the position after the last element in one of its bucket. If no parameter is passed, then it returns a constant iterator pointing to the position after the last element in the unordered_multimap container. Return Value: It returns a constant iterator. It cannot be used to modify the key and element of the unordered_multimap element. Below programs illustrates the above function: Program 1: CPP // C++ program to illustrate the // unordered_multimap::cend() #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key and element sample.insert({ 1, 2 }); sample.insert({ 3, 4 }); sample.insert({ 3, 4 }); sample.insert({ 2, 3 }); sample.insert({ 2, 3 }); // prints all element cout << "Key and Elements:"; for (auto it = sample.cbegin(); it != sample.cend(); it++) cout << "\n " << it->first << "\t " << it->second; return 0; } Output: Key and Elements: 2 3 2 3 1 2 3 4 3 4 Program 2: CPP // C++ program to illustrate the // unordered_multimap::cend(bucket) #include <bits/stdc++.h> using namespace std; int main() { // declaration unordered_multimap<int, int> sample; // inserts key and element sample.insert({ 1, 2 }); sample.insert({ 3, 4 }); sample.insert({ 3, 4 }); sample.insert({ 2, 3 }); sample.insert({ 2, 3 }); // prints all element cout << "Key and Elements of first bucket:"; for (auto it = sample.cbegin(1); it != sample.cend(1); it++) cout << "\n " << it->first << "\t " << it->second; return 0; } Output: Key and Elements of first bucket: 1 2 G gopaldave Follow Article Tags : Misc C++ STL CPP-Functions cpp-unordered_multimap +1 More Explore C++ BasicsIntroduction to C++3 min readData Types in C++6 min readVariables in C++4 min readOperators in C++9 min readBasic Input / Output in C++3 min readControl flow statements in Programming15+ min readLoops in C++7 min readFunctions in C++8 min readArrays in C++8 min readCore ConceptsPointers and References in C++5 min readnew and delete Operators in C++ For Dynamic Memory5 min readTemplates in C++8 min readStructures, Unions and Enumerations in C++3 min readException Handling in C++12 min readFile Handling in C++8 min readMultithreading in C++8 min readNamespace in C++5 min readOOP in C++Object Oriented Programming in C++8 min readInheritance in C++6 min readPolymorphism in C++5 min readEncapsulation in C++3 min readAbstraction in C++4 min readStandard Template Library(STL)Standard Template Library (STL) in C++3 min readContainers in C++ STL2 min readIterators in C++ STL10 min readC++ STL Algorithm Library3 min readPractice & ProblemsC++ Interview Questions and Answers1 min readC++ Programming Examples4 min read My Profile ${profileImgHtml} My Profile Edit Profile My Courses Join Community Transactions Logout Like