Computer Science, asked by Anonymous, 11 months ago

How are private members of a class different from public members?

Answers

Answered by Anonymous
5

Explanation:

⭕ A public member is accessible from anywhere outside the class but within a program.

⭕ You can set and get the value of public variables without any member.

⭕A private member variable or function cannot be accessed, or even viewed from outside the class.

⭕Only the class and friend functions can access private members.

Answered by hinaguptagracy
10

Explanation:

A public member is accessible from anywhere outside the class but within a program. You can set and get the value of public variables without anymember. A private member variable or function cannot be accessed, or even viewed from outside the class. Only the class and friend functions can access private members.

Similar questions