Viewing 1 item
Tag Archives: Structs

Structs in C++

Overview of Structs Structs allow to combine multiple data types as a single data type. Access to these data types within the structs are done through the fields (members) name. Structs become useful when you need to create a data type that you will use multiple times, requires multiple data types to define it and  Full Article…

0