InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between the keywords struct and class in C++? |
|
Answer» By default the members of struct are public and by default the members of the class are private. |
|