Struct

C struct vs class
The only difference between a struct and class in C++ is the default accessibility of member variables and methods. In a struct they are public; in a ...