//********************************************************
//
// Assignment 5 - Functions
//
// Name: Randall Cranshaw
//
// Class: C Programming, Fall 2025
//
// Date: October 12 2025
//
// Description: Program which determines overtime and
// gross pay for a set of employees with outputs sent
// to standard output (the screen).
//
// All functions are called by value
//
//********************************************************
#include <stdio.h>
// constants
#define SIZE 5
#define OVERTIME_RATE 1.5f
#define STD_WORK_WEEK 40.0f
// function prototypes
float getHours (long int clockNumber);
void printHeader (void);
void printEmp (long int clockNumber, float wageRate, float hours,
float overtimeHrs, float grossPay);
// TODO: Add other function prototypes here as needed
// function prototypes for overtime and gross pay
float calc_overtime_hours(float hours_worked);
float calc_gross_pay(float wage_rate, float hours_worked, float overtime_hours);
int main()
{
/* Variable Declarations */
long int clockNumber[SIZE] = {98401,526488,765349,34645,127615}; // ID
float grossPay[SIZE]; // gross pay
float hours[SIZE]; // hours worked in a given week
int i; // loop and array index
float overtimeHrs[SIZE]; // overtime hours
float wageRate[SIZE] = {10.60,9.75,10.50,12.25,8.35}; // hourly wage rate
// process each employee
for (i = 0; i < SIZE; ++i)
{
// Read in hours for employee
hours[i] = getHours(clockNumber[i]);
// TODO: Function call to calculate overtime hours
// Array calc for overtime
overtimeHrs[i] = calc_overtime_hours(hours[i]);
// TODO: Function call to calculate gross pay
// Array calc for Gross pay
grossPay[i] = calc_gross_pay(wageRate[i], hours[i], overtimeHrs[i]);
}
// print the header info
printHeader();
// print out each employee
for (i = 0; i < SIZE; ++i)
{
// Print all the employees - call by value
printEmp(clockNumber[i], wageRate[i], hours[i],
overtimeHrs[i], grossPay[i]);
} // for
return (0);
} // main
//**************************************************************
// Function: getHours
//
// Purpose: Obtains input from user, the number of hours worked
// per employee and stores the result in a local variable
// that is passed back to the calling function.
//
// Parameters: clockNumber - The unique employee ID
//
// Returns: hoursWorked - hours worked in a given week
//
//**************************************************************
float getHours (long int clockNumber)
{
float hoursWorked; // hours worked in a given week
// Read in hours for employee
printf("\nEnter hours worked by emp # %06li: ", clockNumber
); scanf ("%f", &hoursWorked
);
// return hours back to the calling function
return (hoursWorked);
} // getHours
//**************************************************************
// Function: printHeader
//
// Purpose: Prints the initial table header information.
//
// Parameters: none
//
// Returns: void
//
//**************************************************************
void printHeader (void)
{
printf ("\n\n*** Pay Calculator ***\n");
// print the table header
printf("\nClock# Wage Hours OT Gross\n"); printf("------------------------------------------------\n"); } // printHeader
//*************************************************************
// Function: printEmp
//
// Purpose: Prints out all the information for an employee
// in a nice and orderly table format.
//
// Parameters:
//
// clockNumber - unique employee ID
// wageRate - hourly wage rate
// hours - Hours worked for the week
// overtimeHrs - overtime hours worked in a week
// grossPay - gross pay for the week
//
// Returns: void
//
//**************************************************************
void printEmp (long int clockNumber, float wageRate, float hours,
float overtimeHrs, float grossPay)
{
// print the employee
// TODO: add code to print out a single employee
// Spacing of 10 for columns, not counting the clock
printf("%06li %10.2f %10.1f %10.1f %10.2f\n", clockNumber, wageRate, hours, overtimeHrs, grossPay);
}
//1st prototype function overtime hours
//**************************************************************
// Function: calc_overtime_hours
//
// Purpose: Calculates overtime if greater than STD_WORK_WEEK
//
// Parameters:
// hours_worked - Total hours worked for the week
//
// Returns:
// overtime hours (0 if hours_worked is less than STD_WORK_WEEK)
//**************************************************************
float calc_overtime_hours(float hours_worked)
{
if (hours_worked > STD_WORK_WEEK)
return hours_worked - STD_WORK_WEEK;
else
return 0.0f;
}
//2nd prototype function gross pay
//**************************************************************
// Function: calc_gross_pay
//
// Purpose: Calculates total gross pay including overtime pay
//
// Parameters:
// wage_rate - Hourly pay rate
// hours_worked - Total hours worked in a week
// overtime_hours - Total overtime hours worked
//
// Returns:
// gross pay
//**************************************************************
float calc_gross_pay(float wage_rate, float hours_worked, float overtime_hours)
{
float regular_hours = hours_worked;
if (regular_hours > STD_WORK_WEEK)
regular_hours = STD_WORK_WEEK;
float total_gross_pay = (wage_rate * regular_hours) +
(wage_rate * OVERTIME_RATE * overtime_hours);
return total_gross_pay;
}