Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

README.md

String Task

This task was published by @joeeee on the cppafrica discord server here

Client Code

int main() 
{
Student s1;
cin>> s1;
Student s2(s1);
int id1;
string name1;
cin>>id1>>name1; 
s2.Setid(id1);
s2.SetName(name1);
student s3;
s3 = s1;
cin>>id1; s3.Setid(id1);
cout<<s1;
cout<<s2;
cout<<s3;
return 0;
}

Class Student {
int id;
char* name;
char* edu_background;

public:
....class continuation goes here
}