🔒 Closed Ano error mga paps patulong po

Status
Not open for further replies.
1.
write a program to print the names of the students by creating a student class. If no name is passed while creating an object student class, then the name should be "Unknown", otherwise the name should be equal to the string value passed while creating an object of student class (perform constructor overloading)

PS. first year palang po ako at wala po ako masyado alam dito sa coding


class Student
{
string name;
public;
Student(string s)
{
name = s;
}
Student()
{
name = "Unknown";
}
void print_name()
{
cout << name << endl;
}
};
int main()
{
Student s1("Jojie");
Student s2;
s1.print_name();
s2.print_name();
return 0;
}
}
 
Status
Not open for further replies.

About this Thread

  • 4
    Replies
  • 1K
    Views
  • 4
    Participants
Last reply from:
RIMURU_tempest300

Trending Topics

Online now

Members online
1,063
Guests online
2,839
Total visitors
3,902

Forum statistics

Threads
2,332,072
Posts
29,262,360
Members
1,146,038
Latest member
kadan
Back
Top