Showing posts from February, 2021Show all

8) Write a program to calculate overtime pay of 03 employees.

Write a program to calculate overtime pay of 10 employees. Overtime is paid at the rate of Rs. 120.00 per hour for every hour worked above 40 hours. Assume that employees do not work for fractional part of an hour. source file name:  empot.C void main() { int twh,oth; int emp; int otamt; clrscr(); emp=1; while(emp&l…

Read more