Print Salary Bonus Example using Single Level Inheritance in C++


This program defines two classes Account and Programmer where Programmer inherits Account. The Account class has a salary attribute and the Programmer class has a bonus attribute in addition to the salary attribute inherited from Account. The program then creates an object p1 of Programmer class and prints its salary and bonus.

Source Code

#include<iostream>
using namespace std;
class Account
{
   public:
    float salary = 80000;
};
class Programmer: public Account
{
   public:
    float bonus = 6000;
};
int main(void)
{
  Programmer p1;
  cout<<"Salary: "<<p1.salary<<endl;
  cout<<"Bonus: "<<p1.bonus<<endl;
  return 0;
}
To download raw file Click Here

Output

Salary: 80000
Bonus: 6000

Program List


Flow Control

IF Statement Examples


Switch Case


Goto Statement


Break and Continue


While Loop


Do While Loop


For Loop


Friend Function in C++


String Examples


Array Examples


Structure Examples


Structure & Pointer Examples


Structure & Functions Examples


Enumeration Examples


Template Examples


Functions


Inheritance Examples

Hierarchical Inheritance


Hybrid Inheritance


Multilevel Inheritance


Multiple Inheritance


Single Level Inheritance


Class and Objects

Constructor Example


Destructor Example


Operator Overloading Example


Operator and Function Example


List of Programs


Pointer Examples


Memory Management Examples


Pointers and Arrays


Virtual Function Examples