+ 3
C++ data structures
what are the available types of data structures one can work with in c++?
2 Réponses
0
There is one type built into the language (not counting pointers): C-style arrays (int arr[20]; char str[] = "Hello World\n") and a bunch available in the standard library: http://en.cppreference.com/w/cpp/container