How many kinds of classes are there in C++?
Mark only one oval.
1
C
O2
03
O4​

How many kinds of classes are there in C++?
Mark only one oval.
1
C
O2
03
O4​

About the author
Vivian

1 thought on “How many kinds of classes are there in C++?<br />Mark only one oval.<br />1<br />C<br />O2<br />03<br />O4​”

  1. Answer:

    A class in C++ is a user-defined type or data structure declared with keyword class that has data and functions (also called member variables and member functions) as its members whose access is governed by the three access specifiers private, protected or public. By default access to members of a C++ class is private

    Reply

Leave a Comment