c++oopclassstructooad

When should you use a class vs a struct in C++?


In what scenarios is it better to use a struct vs a class in C++?


Solution

  • The differences between a class and a struct in C++ are:

    Both classes and structs can have a mixture of public, protected and private members, can use inheritance, and can have member functions.

    I would recommend you: