Skip to content

Instantly share code, notes, and snippets.

@rajan9519
Created April 16, 2020 12:41
Show Gist options
  • Select an option

  • Save rajan9519/d1384d3a3b196b30dac084b329a3569d to your computer and use it in GitHub Desktop.

Select an option

Save rajan9519/d1384d3a3b196b30dac084b329a3569d to your computer and use it in GitHub Desktop.
class student
{
private:
string name;
int rollNumeber;
public:
student(string sName,int roll); // Constructorn with two arguments
};
student::student(string sName,int roll)
{
// initialize member variables
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment