What are the advantages of using std::array over C-style arrays?
40 std::array is designed as zero-overhead wrapper for C arrays that gives it the "normal" value like semantics of the other C++ containers. You should not notice any difference in runtime









