Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.7K
~434 People Reached
Favorite Forums
Favorite Tags
Member Avatar for sting23

//program for salary payroll #include<iostream.h> #include<stdlib.h> class employee { char name[50]; int number,worked_hours,PF,HRA,salary,net_salary; public: void read(); void calculate(); void display(); }; void employee::read() { cout<<"enter the employee details here"; cout<<"\n enter the employee name"; cin>>name; cout<<"\n emter the employee number"; cin>>number; cout<<"\n enter the employee worked hour"; cin>>worked_hours; cout<<"\n enter …

Member Avatar for muzaffar85
-2
125
Member Avatar for cookware_ok

Easily allows temporary message to be displayed on any label for a programmable length of time. This is a very simple way to display a temporary message on an existing label (or textbox)without doing a lot of coding.

Member Avatar for muzaffar85
0
309