7. The fields in a class, of a C++ program are by default
You must be logged in to post a comment.
You must be logged in to post a comment.
{
int i1;
protected :
int i2;
public :
int i3;
}
class B : public A
{
public :
int i4;
};
class C :B
{
};
Which variable(s) is/are accessible from the main function?
You must be logged in to post a comment.
You must be logged in to post a comment.
You must be logged in to post a comment.
You must be logged in to post a comment.
You must be logged in to post a comment.