C++ data structures | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

C++ data structures

what are the available types of data structures one can work with in c++?

14th Feb 2018, 12:46 PM
Thabiso Pheko
Thabiso Pheko - avatar
2 Answers
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
14th Feb 2018, 12:59 PM
Vlad Serbu
Vlad Serbu - avatar