"student class in c++" Code Answer's

You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "student class in c++" answered properly. Developers are finding an appropriate answer about student class in c++ related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like student class in c++. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on student class in c++. 

student class in c++

By mr.salehimr.salehi on Apr 27, 2021
class Date {
       unsigned int day;
       unsigned int month;
       unsigned int year;
       public:
              Date(void)                                       
                  {
                            cout << "Default Date" << endl;
                  }
                  
                  Date(int d, int m, int y)
                  {
                           if( d > 31 ){
                               cout << "invalid date" << endl;
                               getchar();
                               exit(0);
                           }
                           day = d;
                           month = m;
                           year = y;
                           cout << "Constructor Date" << endl;
                  }
                  ~Date()
                  {
                         cout << "Destructor Date" << endl;
                  }
              void print(void)
              {
                         cout << day << "/" << month << "/" << year << endl;
              } 
                
       };
       
class student{
          char *name;
          char *family;
          char *stdNo;
          unsigned int year;
          Date birthday;
          
      public:
             student(char n[]="",char f[]="",char no[]="0",unsigned int y=1300,Date b=Date(1,1,1300))
             {
                    name = new char[strlen(n)+1];      
                    strcpy(name,n);
                    family = new char [strlen(f)+1];
                    strcpy(family,f);
                    stdNo = new char [strlen(no)+1];
                    strcpy(stdNo,no);
                    year = y;
                    birthday = b;
                    cout << "Constructor student" << endl;
             }
             ~student(void)
             {
                       delete [] name;
                       delete [] family;
                       delete [] stdNo;
                       cout << "destructor student" << endl;
             }    
             Date get_date(void)
             {
                    return birthday;
             }        
             void show()
             {
                  cout << name << " " << family << endl;
                  cout << "Student Number: " << stdNo << endl;
                  cout << "Entrance year: " << year << endl;
                  cout << "Birthday: " ;
                  birthday.print();
             }
      };

Add Comment

0

All those coders who are working on the C++ based application and are stuck on student class in c++ can get a collection of related answers to their query. Programmers need to enter their query on student class in c++ related to C++ code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about student class in c++ for the programmers working on C++ code while coding their module. Coders are also allowed to rectify already present answers of student class in c++ while working on the C++ language code. Developers can add up suggestions if they deem fit any other answer relating to "student class in c++". Visit this developer's friendly online web community, CodeProZone, and get your queries like student class in c++ resolved professionally and stay updated to the latest C++ updates. 

C++ answers related to "student class in c++"

View All C++ queries

C++ queries related to "student class in c++"

student class in c++ Write a program that inputs test scores of a student and display his grade passing the value to base class constructor from derived class c++ calling base class function from derived class object Write a C++ program using class and objects. You have to define multiple-member functions outside class and all those functions will be the same name class friend to another class syntax is not a nonstatic data member or base class of class c++ struct vs class how to fix class friendship errors in c++ arguments to a class instance c++ binary search tree in cpp using class class is replace by structure c++ logger class example c++ call method in same class matrix class in c++ c++ class member initialization declaring instance of class c++ c++ class method example defining class in other file in c++ c++ class constructor static in class c++ c++ thread incide class c++ remove class from vector c++ class member initializer list nested class in c++ cpp class constructor vector remove class c++ extend class static class in C++ cpp how to create an object of template class how to write a class in c++ what is abstract class in c++ abstract class in c++ worker class c++ Using functions in Class c++ class template create class instance c++ c++ class inheritance cpp make class abstract of c++ bind class member function C++ pointer to base class Turn the bank details struct into a class cpp nested class in c, is class uppercase or lowercase linked list in c++ using class insert delete display in array how initilaize deffult value to c++ class volume of shapes using class and operator overload TIME CLASS cpp class access array member by different name c++ argument list for class template is missing 2D point class in c++ c++ final class class cpp c++ public class declaration C++ pointer to incomplete class type is not allowed unreal point class in c++ compare two functions in a class c++ c++ how to inherit from a template class inline in class in C++ new class * [] c++ C++ class linked list class c++ basic implementation vector in c++ class Can you add a constructor to an abstract class c++ How many functions (methods) can a class have? constructor derived class c++ can derived class access private members friend class c++ how to shorten code using using c++ in class with typename

Browse Other Code Languages

CodeProZone