Computer Science, asked by Anonymous, 1 year ago

what is class in c++?

Answers

Answered by bishal27
3
A class in C++ is a user defined type or data structure declared with keywordclass that has data and functions (also called methods) as its members whose access is governed by the three access specifiers private, protected or public (by default access to members of a class is private).
Similar questions