Constructors

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<iostream>

using namespace std;

class student
{
public:
//Arguments/parameters \are constrctors
student (string ownername)
{
cout << "************" << endl;
cout << "welcome to class" << endl;
cout << "owner os this software:" << ownername << endl;
cout << "*************" << endl;
}

};

main ()
{
student s ("Smavia");
student a ("Aminn");
}

You might also like