This question was already asked in the context of C#/.Net.
Now I\'d like to learn the differences between a struct and a class in C++. Please discuss the technical d
Class' members are private by default. Struct's members are public by default. Besides that there are no other differences. Also see this question.