Warning: Trying to access array offset on false in /home3/indiakep/public_html/wp-content/plugins/dw-question-answer/inc/Template.php on line 8
1 Answers
class chetan
{
private:
……
protected:
……
public:
……
};
- The private access specifier is only visible to member functions within its class.
- The protected access specifier is only visible to member functions of its own and derived class.
- The public access specifier is only visible to all functions in the program.
