begin() and end() in Array C++ STL

In this article, we have explored begin() and end() functions in Array container of C++ STL in depth. We have covered the basic idea of iterators as well as both functions deal with iterators.


Array is a container whose size is fixed. Container is an object that holds same datatype.Array size cannot be allocated dynamically.


SYNTAX of array container:


array array_name;

This above code creates an empty array of object_type and its size equals to array_size. However, array can also be created wi...

 •  0 comments  •  flag
Share on Twitter
Published on May 30, 2020 06:03
No comments have been added yet.