[Basic C++] 12 – Data Structure in C++ : struct
2020. 6. 3.
During the next six posts, I will explain about data structures in C++. Consider data structures as a container for various kinds of data in C++. Data elements are strictly separated in C++ under each data type, however, data structures allow you to group different data types under a single name. There are “struct”, “class” and “union” in C++ that help you form data structures. In this post, I a..