C++ STL Array Container – std::array
Here you will learn about STL Array Container in C++ i.e. std::array. I Hope you know about C-type arrays (arrays in C language). Since C++ is just extension to C language we can use those. The main property is that, Array contains series of elements of same type placed in contiguous memory locations. i.e suppose we …
