C++ Vector cend()This function is used to point to the past-the-last element (element after the last element) in the vector. cend() vs end()The cend() function returns the constant iterator while end() function returns an iterator. The element pointed by the end() functioncan be modified but not by the cend() function. SyntaxConsider a vector 'v', Syntax would be: ParameterIt does not contain any parameter. Return valueIt returns a constant iterator pointing to thepast-the-last element in the vector. Example 1Let's see a simple example. Output: Tutorial In this example, cend() function is accessed using an object of constant iterator type. Example 2Let's see a simple example. Output: 1 2 3 4 5 Next TopicC++ Vector |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India