Posts by Vinicius Souza • 77 points
1 post
-
6
votes3
answers485
viewsA: C++ - What’s the difference of using fixed C++ and typedef types of a type?
The difference between a C array and a std::array is basically its interface. The std::array has a container interface (such as std::vector, for example), so you have a number of facilities, like…