I know that, in C++, there is 2 kind of arrays : statics and dynamics arrays. But I have a question :
Why would we use static arrays rather than dynamics arrays in some cases whereas, it seems to me, we can do more things with dynamics arrays than with statics arrays ?
Why would we use dynamics arrays in all cases ?
std::vector.