- 1
fill the blank to create a class"people " with three private integer member birthmonth,birthday,birthyear
3 Answers
+ 3
If you are talking about c++. Here
class
{
private:
int birthmonth,birthday,birthyear;
}
or do not write private. By default all class members are private. That can only access by class itself and a class or function with friend keyword.
+ 1
Which language, please explain your problem
0
help me pls