#include <iostream>
using namespace std;
class emp
{
    char name[30];
    int id;
    public:
        void getdata()
        {
            cout<<"\n Enter the Employee Name : ";
            cin>>name;
            cout<<"\n Enter the ID of Employee : ";
            cin>>id;
        }
};
class salary
{
    int basic,HRA,DA;
    public:
        void getdata()
        {
            cout<<"\n Enter the Basic pay : ";
            cin>>basic;
            cout<<"\n Enter the HRA : ";
            cin>>HRA;
            cout<<"\n Enter the DA : ";
            cin>>DA;
        }
};

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: