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
|
JavaTpoint offers too many high quality services. Mail us on [email protected], to get more information about given services.
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected]
Duration: 1 week to 2 week