CPP Basic Programs-List1
Following are the list of C++ Programs. 1. C++ Program to display employee salary information. #include<iostream.h> #include<conio.h> class test { public: int bs, hra, pf, net; getdata(int bs1, int hra1, int pf1) { bs=bs1; hra=hra1; pf=pf1; net=bs+hra-pf; return(net); } void display() { cout <<“Net Salary=”<<net; } }; main() { clrscr(); test t; t.getdata(10000,3000, 1500); t.display(); …