A Few Things About Structs
On Structs A struct is a quintessential example of an abstraction born out of engineering necessity — it was the demand that chose the struct, not the struct that created the demand. 1. What Is a Struct? Wikipedia’s struct article describes it as follows: In C, a struct (structure) is a data structure that falls under the category of composite (aggregate) data types. In plain language, a struct is a composite data type created by combining basic data types as needed. ...