//*******************************************************
//
// Homework: 1 (Chapter 4/5)
//
// Name: Tina Gayle-Campbell
//
// Class: C Programming, Fall 2026
//
// Date: September 13, 2026
//
// Description: Program which determines gross pay and outputs
// to the screen. This version does not use file pointers
//
// Non file pointer solution
//
//******************************************************** 



#include <stdio.h>

int main(void) {
	//declare and describe what each variable is used for */
int clockNumber; /* employee clock number */
float grossPay; /* gross pay for week (wage * hours) */
float hours; /* number of hours worked per week */
float wageRate; /* hourly wage */
	return 0;
}
