Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- class Student {
- private:
- char ime[50];
- char prezime[50];
- public:
- Student() {}
- Student(char *i, char *p) {
- strcpy(ime, i);
- strcpy(prezime, p);
- }
- Student(const Student &tmp) { // copy constructor
- strcpy(ime, tmp.ime);
- strcpy(prezime, tmp.prezime);
- }
- };
- int main() {
- Student s("a", "a");
- Student s2 = s;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement