C++ Programmer Question:

Please explain is there a difference between class and struct?

Tweet Share WhatsApp

Answer:

The only difference between a class and struct are the access modifiers. Struct members are public by default; class members are private. It is good practice to use classes when you need an object that has methods and structs when you have a simple data object.

Download C++ Programmer PDF Read All 59 C++ Programmer Questions
Previous QuestionNext Question
Tell me what will the line of code below print out and why?Explain what are VTABLE and VPTR?