Skip to main content

Posts

Showing posts with the label Inheritance

C++ Program On Inheritance-Accept Details Of A Student & Print Marks Percentage.

This is a sample C++ Program. using inheritance. Using Inheritance, this program accepts details of a student and print marks and percentage using inheritance. #include <iostream.h> #include <conio.h> class person {     private:         char name [20];         long int phone;     public:         void read ( )            {                cout << " Enter Name & Phone Number ";                cin >> name >> phone;            }         void show ( )            {                cout << "\n Name Is: " << name;                cout << "\n Phone Number Is: " << phone; ...