Some details about arrays in C++:
Bitesize Modern C++ :
std::arrayby Glennan Carnie
From the article:
C++98 inherited C’s only built-in container, the array. Arrays of non-class types behave in exactly the same way as they do in C. For class types, when an array is constructed the default constructor is called on each element in the array...

Add a Comment
Comments are closed.