- 12
Fill in the blanks to declare the class Student, with int data member called age. Student class has a constructor with one argum
3 Answers
+ 2
FERPLAY.N If you want your assignments to be done in time without any effort from your side, consider hiring a dev. Oh, and make sure that you pay him well.
0
Please avoid copying your question into the tags section, that's not the purpose of tags.
https://code.sololearn.com/W3uiji9X28C1/?ref=app
0
class Student
{
public:
void hello(){
cout<<"hi from student"<<endl;
}
};