fork(2) download
  1. //********************************************************
  2. //
  3. // Assignment 8 - Structures and Strings and Pointers
  4. //
  5. // Name: Kamil Kurpiewski
  6. //
  7. // Class: C Programming, Fall, 2025
  8. //
  9. // Date: 11/6/2025
  10. //
  11. // Description: Program which determines overtime and
  12. // gross pay for a set of employees with outputs sent
  13. // to standard output (the screen).
  14. //
  15. // This assignment also adds the employee name, their tax state,
  16. // and calculates the state tax, federal tax, and net pay. It
  17. // also calculates totals, averages, minimum, and maximum values.
  18. //
  19. // Array and Structure references are to be replaced with
  20. // pointer references to speed up the processing of this code.
  21. //
  22. // Call by Reference design (using pointers)
  23. //
  24. //********************************************************
  25.  
  26. // necessary header files
  27. #include <stdio.h>
  28. #include <string.h>
  29. #include <ctype.h>
  30.  
  31. // define constants
  32. #define SIZE 5
  33. #define STD_HOURS 40.0
  34. #define OT_RATE 1.5
  35. #define MA_TAX_RATE 0.05
  36. #define NH_TAX_RATE 0.0
  37. #define VT_TAX_RATE 0.06
  38. #define CA_TAX_RATE 0.07
  39. #define DEFAULT_TAX_RATE 0.08
  40. #define NAME_SIZE 20
  41. #define TAX_STATE_SIZE 3
  42. #define FED_TAX_RATE 0.25
  43. #define FIRST_NAME_SIZE 10
  44. #define LAST_NAME_SIZE 10
  45.  
  46. // Define a structure type to store an employee name
  47. // ... note how one could easily extend this to other parts
  48. // parts of a name: Middle, Nickname, Prefix, Suffix, etc.
  49. struct name
  50. {
  51. char firstName[FIRST_NAME_SIZE];
  52. char lastName [LAST_NAME_SIZE];
  53. };
  54.  
  55. // Define a structure type to pass employee data between functions
  56. // Note that the structure type is global, but you don't want a variable
  57. // of that type to be global. Best to declare a variable of that type
  58. // in a function like main or another function and pass as needed.
  59. struct employee
  60. {
  61. struct name empName;
  62. char taxState [TAX_STATE_SIZE];
  63. long int clockNumber;
  64. float wageRate;
  65. float hours;
  66. float overtimeHrs;
  67. float grossPay;
  68. float stateTax;
  69. float fedTax;
  70. float netPay;
  71. };
  72.  
  73. // this structure type defines the totals of all floating point items
  74. // so they can be totaled and used also to calculate averages
  75. struct totals
  76. {
  77. float total_wageRate;
  78. float total_hours;
  79. float total_overtimeHrs;
  80. float total_grossPay;
  81. float total_stateTax;
  82. float total_fedTax;
  83. float total_netPay;
  84. };
  85.  
  86. // this structure type defines the min and max values of all floating
  87. // point items so they can be display in our final report
  88. struct min_max
  89. {
  90. float min_wageRate;
  91. float min_hours;
  92. float min_overtimeHrs;
  93. float min_grossPay;
  94. float min_stateTax;
  95. float min_fedTax;
  96. float min_netPay;
  97. float max_wageRate;
  98. float max_hours;
  99. float max_overtimeHrs;
  100. float max_grossPay;
  101. float max_stateTax;
  102. float max_fedTax;
  103. float max_netPay;
  104. };
  105.  
  106. // define prototypes here for each function except main
  107.  
  108. // These prototypes have already been transitioned to pointers
  109. void getHours (struct employee * emp_ptr, int theSize);
  110. void printEmp (struct employee * emp_ptr, int theSize);
  111.  
  112. void calcEmployeeTotals (struct employee * emp_ptr,
  113. struct totals * emp_totals_ptr,
  114. int theSize);
  115.  
  116. void calcEmployeeMinMax (struct employee * emp_ptr,
  117. struct min_max * emp_MinMax_ptr,
  118. int theSize);
  119.  
  120. // This prototype does not need to use pointers
  121. void printHeader (void);
  122.  
  123.  
  124. void calcOvertimeHrs (struct employee * emp_ptr, int theSize);
  125. void calcGrossPay (struct employee * emp_ptr, int theSize);
  126. void calcStateTax (struct employee * emp_ptr, int theSize);
  127. void calcFedTax (struct employee * emp_ptr, int theSize);
  128. void calcNetPay (struct employee * emp_ptr, int theSize);
  129.  
  130. void printEmpStatistics (struct totals * emp_totals_ptr,
  131. struct min_max * emp_MinMax_ptr,
  132. int theSize);
  133.  
  134. int main ()
  135. {
  136.  
  137. // Set up a local variable to store the employee information
  138. // Initialize the name, tax state, clock number, and wage rate
  139. struct employee employeeData[SIZE] = {
  140. { {"Connie", "Cobol"}, "MA", 98401, 10.60},
  141. { {"Mary", "Apl"}, "NH", 526488, 9.75 },
  142. { {"Frank", "Fortran"}, "VT", 765349, 10.50 },
  143. { {"Jeff", "Ada"}, "NY", 34645, 12.25 },
  144. { {"Anton", "Pascal"},"CA",127615, 8.35 }
  145. };
  146.  
  147. // declare a pointer to the array of employee structures
  148. struct employee * emp_ptr;
  149.  
  150. // set the pointer to point to the array of employees
  151. emp_ptr = employeeData;
  152.  
  153. // set up structure to store totals and initialize all to zero
  154. struct totals employeeTotals = {0,0,0,0,0,0,0};
  155.  
  156. // pointer to the employeeTotals structure
  157. struct totals * emp_totals_ptr = &employeeTotals;
  158.  
  159. // set up structure to store min and max values and initialize all to zero
  160. struct min_max employeeMinMax = {0,0,0,0,0,0,0,0,0,0,0,0,0,0};
  161.  
  162. // pointer to the employeeMinMax structure
  163. struct min_max * emp_minMax_ptr = &employeeMinMax;
  164.  
  165. // Call functions as needed to read and calculate information
  166.  
  167. // Prompt for the number of hours worked by the employee
  168. getHours (employeeData, SIZE);
  169.  
  170. // Calculate the overtime hours
  171. calcOvertimeHrs (employeeData, SIZE);
  172.  
  173. // Calculate the weekly gross pay
  174. calcGrossPay (employeeData, SIZE);
  175.  
  176. // Calculate the state tax
  177. calcStateTax (employeeData, SIZE);
  178.  
  179. // Calculate the federal tax
  180. calcFedTax (employeeData, SIZE);
  181.  
  182. // Calculate the net pay after taxes
  183. calcNetPay (employeeData, SIZE);
  184.  
  185. // Keep a running sum of the employee totals
  186. // Note the & to specify the address of the employeeTotals
  187. // structure. Needed since pointers work with addresses.
  188. calcEmployeeTotals (employeeData,
  189. &employeeTotals,
  190. SIZE);
  191.  
  192. // Keep a running update of the employee minimum and maximum values
  193. calcEmployeeMinMax (employeeData,
  194. &employeeMinMax,
  195. SIZE);
  196. // Print the column headers
  197. printHeader();
  198.  
  199. // print out final information on each employee
  200. printEmp (employeeData, SIZE);
  201.  
  202. // print the totals and averages for all float items
  203. printEmpStatistics (&employeeTotals,
  204. &employeeMinMax,
  205. SIZE);
  206.  
  207. return (0); // success
  208.  
  209. } // main
  210.  
  211. //**************************************************************
  212. // Function: getHours
  213. //
  214. // Purpose: Obtains input from user, the number of hours worked
  215. // per employee and updates it in the array of structures
  216. // for each employee.
  217. //
  218. // Parameters:
  219. //
  220. // emp_ptr - pointer to array of employees (i.e., struct employee)
  221. // theSize - the array size (i.e., number of employees)
  222. //
  223. // Returns: void (the employee hours gets updated by reference)
  224. //
  225. //**************************************************************
  226.  
  227. void getHours (struct employee * emp_ptr, int theSize)
  228. {
  229.  
  230. int i; // loop index
  231.  
  232. // read in hours for each employee
  233. for (i = 0; i < theSize; ++i)
  234. {
  235. // Read in hours for employee
  236. printf("\nEnter hours worked by emp # %06li: ", emp_ptr->clockNumber);
  237. scanf ("%f", &emp_ptr->hours);
  238.  
  239. // set pointer to next employee
  240. ++emp_ptr;
  241. }
  242.  
  243. } // getHours
  244.  
  245. //**************************************************************
  246. // Function: printHeader
  247. //
  248. // Purpose: Prints the initial table header information.
  249. //
  250. // Parameters: none
  251. //
  252. // Returns: void
  253. //
  254. //**************************************************************
  255.  
  256. void printHeader (void)
  257. {
  258.  
  259. printf ("\n\n*** Pay Calculator ***\n");
  260.  
  261. // print the table header
  262. printf("\n--------------------------------------------------------------");
  263. printf("-------------------");
  264. printf("\nName Tax Clock# Wage Hours OT Gross ");
  265. printf(" State Fed Net");
  266. printf("\n State Pay ");
  267. printf(" Tax Tax Pay");
  268.  
  269. printf("\n--------------------------------------------------------------");
  270. printf("-------------------");
  271.  
  272. } // printHeader
  273.  
  274. //*************************************************************
  275. // Function: printEmp
  276. //
  277. // Purpose: Prints out all the information for each employee
  278. // in a nice and orderly table format.
  279. //
  280. // Parameters:
  281. //
  282. // emp_ptr - pointer to array of struct employee
  283. // theSize - the array size (i.e., number of employees)
  284. //
  285. // Returns: void
  286. //
  287. //**************************************************************
  288.  
  289. void printEmp (struct employee * emp_ptr, int theSize)
  290. {
  291.  
  292. int i; // array and loop index
  293.  
  294. // Used to format the employee name
  295. char name [FIRST_NAME_SIZE + LAST_NAME_SIZE + 1];
  296.  
  297. // read in hours for each employee
  298. for (i = 0; i < theSize; ++i)
  299. {
  300. // While you could just print the first and last name in the printf
  301. // statement that follows, you could also use various C string library
  302. // functions to format the name exactly the way you want it. Breaking
  303. // the name into first and last members additionally gives you some
  304. // flexibility in printing. This also becomes more useful if we decide
  305. // later to store other parts of a person's name. I really did this just
  306. // to show you how to work with some of the common string functions.
  307. strcpy (name, emp_ptr->empName.firstName);
  308. strcat (name, " "); // add a space between first and last names
  309. strcat (name, emp_ptr->empName.lastName);
  310.  
  311. // Print out a single employee
  312. printf("\n%-20.20s %-2.2s %06li %5.2f %4.1f %4.1f %7.2f %6.2f %7.2f %8.2f",
  313. name, emp_ptr->taxState, emp_ptr->clockNumber,
  314. emp_ptr->wageRate, emp_ptr->hours,
  315. emp_ptr->overtimeHrs, emp_ptr->grossPay,
  316. emp_ptr->stateTax, emp_ptr->fedTax,
  317. emp_ptr->netPay);
  318.  
  319. // set pointer to next employee
  320. ++emp_ptr;
  321.  
  322. } // for
  323.  
  324. } // printEmp
  325.  
  326. //*************************************************************
  327. // Function: printEmpStatistics
  328. //
  329. // Purpose: Prints out the summary totals and averages of all
  330. // floating point value items for all employees
  331. // that have been processed. It also prints
  332. // out the min and max values.
  333. //
  334. // Parameters:
  335. //
  336. // employeeTotals - a structure containing a running total
  337. // of all employee floating point items
  338. // employeeMinMax - a structure containing all the minimum
  339. // and maximum values of all employee
  340. // floating point items
  341. // theSize - the total number of employees processed, used
  342. // to check for zero or negative divide condition.
  343. //
  344. // Returns: void
  345. //
  346. //**************************************************************
  347.  
  348.  
  349. void printEmpStatistics (struct totals * emp_totals_ptr,
  350. struct min_max * emp_MinMax_ptr,
  351. int theSize)
  352. {
  353.  
  354. // print a separator line
  355. printf("\n--------------------------------------------------------------");
  356. printf("-------------------");
  357.  
  358. // print the totals for all the floating point fields
  359. printf("\nTotals: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  360. emp_totals_ptr->total_wageRate,
  361. emp_totals_ptr->total_hours,
  362. emp_totals_ptr->total_overtimeHrs,
  363. emp_totals_ptr->total_grossPay,
  364. emp_totals_ptr->total_stateTax,
  365. emp_totals_ptr->total_fedTax,
  366. emp_totals_ptr->total_netPay);
  367.  
  368. // make sure you don't divide by zero or a negative number
  369. if (theSize > 0)
  370. {
  371. // print the averages for all the floating point fields
  372. printf("\nAverages: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  373. emp_totals_ptr->total_wageRate/theSize,
  374. emp_totals_ptr->total_hours/theSize,
  375. emp_totals_ptr->total_overtimeHrs/theSize,
  376. emp_totals_ptr->total_grossPay/theSize,
  377. emp_totals_ptr->total_stateTax/theSize,
  378. emp_totals_ptr->total_fedTax/theSize,
  379. emp_totals_ptr->total_netPay/theSize);
  380. } // if
  381.  
  382. // print the min and max values
  383.  
  384. printf("\nMinimum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  385. emp_MinMax_ptr->min_wageRate,
  386. emp_MinMax_ptr->min_hours,
  387. emp_MinMax_ptr->min_overtimeHrs,
  388. emp_MinMax_ptr->min_grossPay,
  389. emp_MinMax_ptr->min_stateTax,
  390. emp_MinMax_ptr->min_fedTax,
  391. emp_MinMax_ptr->min_netPay);
  392.  
  393. printf("\nMaximum: %5.2f %5.1f %5.1f %7.2f %6.2f %7.2f %8.2f",
  394. emp_MinMax_ptr->max_wageRate,
  395. emp_MinMax_ptr->max_hours,
  396. emp_MinMax_ptr->max_overtimeHrs,
  397. emp_MinMax_ptr->max_grossPay,
  398. emp_MinMax_ptr->max_stateTax,
  399. emp_MinMax_ptr->max_fedTax,
  400. emp_MinMax_ptr->max_netPay);
  401.  
  402. } // printEmpStatistics
  403.  
  404. //*************************************************************
  405. // Function: calcOvertimeHrs
  406. //
  407. // Purpose: Calculates the overtime hours worked by an employee
  408. // in a given week for each employee.
  409. //
  410. // Parameters:
  411. //
  412. // employeeData - array of employees (i.e., struct employee)
  413. // theSize - the array size (i.e., number of employees)
  414. //
  415. // Returns: void (the overtime hours gets updated by reference)
  416. //
  417. //**************************************************************
  418.  
  419.  
  420.  
  421. void calcOvertimeHrs (struct employee * emp_ptr, int theSize)
  422. {
  423.  
  424. int i; // array and loop index
  425.  
  426. // calculate overtime hours for each employee
  427. for (i = 0; i < theSize; ++i)
  428. {
  429. // Any overtime ?
  430. if (emp_ptr->hours >= STD_HOURS)
  431. {
  432. emp_ptr->overtimeHrs = emp_ptr->hours - STD_HOURS;
  433. }
  434. else // no overtime
  435. {
  436. emp_ptr->overtimeHrs = 0;
  437. ++emp_ptr;
  438. }
  439.  
  440. } // for
  441.  
  442. } // calcOvertimeHrs
  443.  
  444. //*************************************************************
  445. // Function: calcGrossPay
  446. //
  447. // Purpose: Calculates the gross pay based on the the normal pay
  448. // and any overtime pay for a given week for each
  449. // employee.
  450. //
  451. // Parameters:
  452. //
  453. // employeeData - array of employees (i.e., struct employee)
  454. // theSize - the array size (i.e., number of employees)
  455. //
  456. // Returns: void (the gross pay gets updated by reference)
  457. //
  458. //**************************************************************
  459.  
  460.  
  461. void calcGrossPay (struct employee *emp_ptr, int theSize)
  462. {
  463. int i; // loop and array index
  464. float theNormalPay; // normal pay without any overtime hours
  465. float theOvertimePay; // overtime pay
  466.  
  467. // calculate grossPay for each employee
  468. for (i=0; i < theSize; ++i)
  469. {
  470. // calculate normal pay and any overtime pay
  471. theNormalPay = emp_ptr->wageRate *
  472. (emp_ptr->hours - emp_ptr->overtimeHrs);
  473. theOvertimePay = emp_ptr->overtimeHrs *
  474. (OT_RATE * emp_ptr->wageRate);
  475.  
  476. // calculate gross pay for employee as normalPay + any overtime pay
  477. emp_ptr->grossPay = theNormalPay + theOvertimePay;
  478. ++emp_ptr;
  479. }
  480.  
  481. } // calcGrossPay
  482.  
  483. //*************************************************************
  484. // Function: calcStateTax
  485. //
  486. // Purpose: Calculates the State Tax owed based on gross pay
  487. // for each employee. State tax rate is based on the
  488. // the designated tax state based on where the
  489. // employee is actually performing the work. Each
  490. // state decides their tax rate.
  491. //
  492. // Parameters:
  493. //
  494. // employeeData - array of employees (i.e., struct employee)
  495. // theSize - the array size (i.e., number of employees)
  496. //
  497. // Returns: void (the state tax gets updated by reference)
  498. //
  499. //**************************************************************
  500.  
  501.  
  502.  
  503. void calcStateTax (struct employee * emp_ptr, int theSize)
  504. {
  505.  
  506. int i; // loop and array index
  507.  
  508. // calculate state tax based on where employee works
  509. for (i=0; i < theSize; ++i)
  510. {
  511. // Make sure tax state is all uppercase
  512. if (islower(emp_ptr->taxState[0]))
  513. emp_ptr->taxState[0] = toupper(emp_ptr->taxState[0]);
  514. if (islower(emp_ptr->taxState[1]))
  515. emp_ptr->taxState[1] = toupper(emp_ptr->taxState[1]);
  516.  
  517. // calculate state tax based on where employee resides
  518. if (strcmp(emp_ptr->taxState, "MA") == 0)
  519. emp_ptr->stateTax = emp_ptr->grossPay * MA_TAX_RATE;
  520. else if (strcmp(emp_ptr->taxState, "VT") == 0)
  521. emp_ptr->stateTax = emp_ptr->grossPay * VT_TAX_RATE;
  522. else if (strcmp(emp_ptr->taxState, "NH") == 0)
  523. emp_ptr->stateTax = emp_ptr->grossPay * NH_TAX_RATE;
  524. else if (strcmp(emp_ptr->taxState, "CA") == 0)
  525. emp_ptr->stateTax = emp_ptr->grossPay * CA_TAX_RATE;
  526. else
  527. // any other state is the default rate
  528. emp_ptr->stateTax = emp_ptr->grossPay * DEFAULT_TAX_RATE;
  529. ++emp_ptr;
  530. } // for
  531.  
  532. } // calcStateTax
  533.  
  534. //*************************************************************
  535. // Function: calcFedTax
  536. //
  537. // Purpose: Calculates the Federal Tax owed based on the gross
  538. // pay for each employee
  539. //
  540. // Parameters:
  541. //
  542. // employeeData - array of employees (i.e., struct employee)
  543. // theSize - the array size (i.e., number of employees)
  544. //
  545. // Returns: void (the federal tax gets updated by reference)
  546. //
  547. //**************************************************************
  548.  
  549.  
  550.  
  551. void calcFedTax (struct employee * emp_ptr, int theSize)
  552. {
  553.  
  554. int i; // loop and array index
  555.  
  556. // calculate the federal tax for each employee
  557. for (i=0; i < theSize; ++i)
  558. {
  559. // Fed Tax is the same for all regardless of state
  560. emp_ptr->fedTax = emp_ptr->grossPay * FED_TAX_RATE;
  561. ++emp_ptr;
  562.  
  563. } // for
  564.  
  565. } // calcFedTax
  566.  
  567. //*************************************************************
  568. // Function: calcNetPay
  569. //
  570. // Purpose: Calculates the net pay as the gross pay minus any
  571. // state and federal taxes owed for each employee.
  572. // Essentially, their "take home" pay.
  573. //
  574. // Parameters:
  575. //
  576. // employeeData - array of employees (i.e., struct employee)
  577. // theSize - the array size (i.e., number of employees)
  578. //
  579. // Returns: void (the net pay gets updated by reference)
  580. //
  581. //**************************************************************
  582.  
  583.  
  584. void calcNetPay (struct employee * emp_ptr, int theSize)
  585. {
  586. int i; // loop and array index
  587. float theTotalTaxes; // the total state and federal tax
  588.  
  589. // calculate the take home pay for each employee
  590. for (i=0; i < theSize; ++i)
  591. {
  592. // calculate the total state and federal taxes
  593. theTotalTaxes = emp_ptr->stateTax + emp_ptr->fedTax;
  594.  
  595. // calculate the net pay
  596. emp_ptr->netPay = emp_ptr->grossPay - theTotalTaxes;
  597. ++emp_ptr;
  598.  
  599. } // for
  600.  
  601. } // calcNetPay
  602.  
  603. //*************************************************************
  604. // Function: calcEmployeeTotals
  605. //
  606. // Purpose: Performs a running total (sum) of each employee
  607. // floating point member in the array of structures
  608. //
  609. // Parameters:
  610. //
  611. // emp_ptr - pointer to array of employees (structure)
  612. // emp_totals_ptr - pointer to a structure containing the
  613. // running totals of all floating point
  614. // members in the array of employee structure
  615. // that is accessed and referenced by emp_ptr
  616. // theSize - the array size (i.e., number of employees)
  617. //
  618. // Returns:
  619. //
  620. // void (the employeeTotals structure gets updated by reference)
  621. //
  622. //**************************************************************
  623.  
  624. void calcEmployeeTotals (struct employee * emp_ptr,
  625. struct totals * emp_totals_ptr,
  626. int theSize)
  627. {
  628.  
  629. int i; // loop index
  630.  
  631. // total up each floating point item for all employees
  632. for (i = 0; i < theSize; ++i)
  633. {
  634. // add current employee data to our running totals
  635. emp_totals_ptr->total_wageRate += emp_ptr->wageRate;
  636. emp_totals_ptr->total_hours += emp_ptr->hours;
  637. emp_totals_ptr->total_overtimeHrs += emp_ptr->overtimeHrs;
  638. emp_totals_ptr->total_grossPay += emp_ptr->grossPay;
  639. emp_totals_ptr->total_stateTax += emp_ptr->stateTax;
  640. emp_totals_ptr->total_fedTax += emp_ptr->fedTax;
  641. emp_totals_ptr->total_netPay += emp_ptr->netPay;
  642.  
  643. // go to next employee in our array of structures
  644. // Note: We don't need to increment the emp_totals_ptr
  645. // because it is not an array
  646. ++emp_ptr;
  647.  
  648. } // for
  649.  
  650. // no need to return anything since we used pointers and have
  651. // been referring the array of employee structure and the
  652. // the total structure from its calling function ... this
  653. // is the power of Call by Reference.
  654.  
  655. } // calcEmployeeTotals
  656.  
  657. //*************************************************************
  658. // Function: calcEmployeeMinMax
  659. //
  660. // Purpose: Accepts various floating point values from an
  661. // employee and adds to a running update of min
  662. // and max values
  663. //
  664. // Parameters:
  665. //
  666. // employeeData - array of employees (i.e., struct employee)
  667. // employeeTotals - structure containing a running totals
  668. // of all fields above
  669. // theSize - the array size (i.e., number of employees)
  670. //
  671. // Returns:
  672. //
  673. // employeeMinMax - updated employeeMinMax structure
  674. //
  675. //**************************************************************
  676.  
  677. void calcEmployeeMinMax (struct employee * emp_ptr,
  678. struct min_max * emp_minMax_ptr,
  679. int theSize)
  680. {
  681.  
  682. int i; // loop index
  683.  
  684. // At this point, emp_ptr is pointing to the first
  685. // employee which is located in the first element
  686. // of our employee array of structures (employeeData).
  687.  
  688. // As this is the first employee, set each min
  689. // min and max value using our emp_minMax_ptr
  690. // to the associated member fields below. They
  691. // will become the initial baseline that we
  692. // can check and update if needed against the
  693. // remaining employees.
  694.  
  695. // set the min to the first employee members
  696. emp_minMax_ptr->min_wageRate = emp_ptr->wageRate;
  697. emp_minMax_ptr->min_hours = emp_ptr->hours;
  698. emp_minMax_ptr->min_overtimeHrs = emp_ptr->overtimeHrs;
  699. emp_minMax_ptr->min_grossPay = emp_ptr->grossPay;
  700. emp_minMax_ptr->min_stateTax = emp_ptr->stateTax;
  701. emp_minMax_ptr->min_fedTax = emp_ptr->fedTax;
  702. emp_minMax_ptr->min_netPay = emp_ptr->netPay;
  703.  
  704. // set the max to the first employee members
  705. emp_minMax_ptr->max_wageRate = emp_ptr->wageRate;
  706. emp_minMax_ptr->max_hours = emp_ptr->hours;
  707. emp_minMax_ptr->max_overtimeHrs = emp_ptr->overtimeHrs;
  708. emp_minMax_ptr->max_grossPay = emp_ptr->grossPay;
  709. emp_minMax_ptr->max_stateTax = emp_ptr->stateTax;
  710. emp_minMax_ptr->max_fedTax = emp_ptr->fedTax;
  711. emp_minMax_ptr->max_netPay = emp_ptr->netPay;
  712.  
  713. // compare the rest of the employees to each other for min and max
  714. for (i = 1; i < theSize; ++i)
  715. {
  716.  
  717. // go to next employee in our array of structures
  718. // Note: We don't need to increment the emp_totals_ptr
  719. // because it is not an array
  720. ++emp_ptr;
  721.  
  722. // check if current Wage Rate is the new min and/or max
  723. if (emp_ptr->wageRate < emp_minMax_ptr->min_wageRate)
  724. {
  725. emp_minMax_ptr->min_wageRate = emp_ptr->wageRate;
  726. }
  727.  
  728. if (emp_ptr->wageRate > emp_minMax_ptr->max_wageRate)
  729. {
  730. emp_minMax_ptr->max_wageRate = emp_ptr->wageRate;
  731. }
  732.  
  733. // check is current Hours is the new min and/or max
  734. if (emp_ptr->hours < emp_minMax_ptr->min_hours)
  735. {
  736. emp_minMax_ptr->min_hours = emp_ptr->hours;
  737. }
  738.  
  739. if (emp_ptr->hours > emp_minMax_ptr->max_hours)
  740. {
  741. emp_minMax_ptr->max_hours = emp_ptr->hours;
  742. }
  743.  
  744. // check is current Overtime Hours is the new min and/or max
  745. if (emp_ptr->overtimeHrs < emp_minMax_ptr->min_overtimeHrs)
  746. {
  747. emp_minMax_ptr->min_overtimeHrs = emp_ptr->overtimeHrs;
  748. }
  749.  
  750. if (emp_ptr->overtimeHrs > emp_minMax_ptr->max_overtimeHrs)
  751. {
  752. emp_minMax_ptr->max_overtimeHrs = emp_ptr->overtimeHrs;
  753. }
  754.  
  755. // check is current Gross Pay is the new min and/or max
  756. if (emp_ptr->grossPay < emp_minMax_ptr->min_grossPay)
  757. {
  758. emp_minMax_ptr->min_grossPay = emp_ptr->grossPay;
  759. }
  760.  
  761. if (emp_ptr->grossPay > emp_minMax_ptr->max_grossPay)
  762. {
  763. emp_minMax_ptr->max_grossPay = emp_ptr->grossPay;
  764. }
  765.  
  766. // check is current State Tax is the new min and/or max
  767. if (emp_ptr->stateTax < emp_minMax_ptr->min_stateTax)
  768. {
  769. emp_minMax_ptr->min_stateTax = emp_ptr->stateTax;
  770. }
  771.  
  772. if (emp_ptr->stateTax > emp_minMax_ptr->max_stateTax)
  773. {
  774. emp_minMax_ptr->max_stateTax = emp_ptr->stateTax;
  775. }
  776.  
  777. // check is current Federal Tax is the new min and/or max
  778. if (emp_ptr->fedTax < emp_minMax_ptr->min_fedTax)
  779. {
  780. emp_minMax_ptr->min_fedTax = emp_ptr->fedTax;
  781. }
  782.  
  783. if (emp_ptr->fedTax > emp_minMax_ptr->max_fedTax)
  784. {
  785. emp_minMax_ptr->max_fedTax = emp_ptr->fedTax;
  786. }
  787.  
  788. // check is current Net Pay is the new min and/or max
  789. if (emp_ptr->netPay < emp_minMax_ptr->min_netPay)
  790. {
  791. emp_minMax_ptr->min_netPay = emp_ptr->netPay;
  792. }
  793.  
  794. if (emp_ptr->netPay > emp_minMax_ptr->max_netPay)
  795. {
  796. emp_minMax_ptr->max_netPay = emp_ptr->netPay;
  797. }
  798.  
  799. } // else if
  800.  
  801. // no need to return anything since we used pointers and have
  802. // been referencing the employeeData structure and the
  803. // the employeeMinMax structure from its calling function ...
  804. // this is the power of Call by Reference.
  805.  
  806. } // calcEmployeeMinMax
Success #stdin #stdout 0s 5304KB
stdin
51.0
42.5
37.0
45.0
40.0
stdout
Enter hours worked by emp # 098401: 
Enter hours worked by emp # 526488: 
Enter hours worked by emp # 765349: 
Enter hours worked by emp # 034645: 
Enter hours worked by emp # 127615: 

*** Pay Calculator ***

---------------------------------------------------------------------------------
Name                Tax  Clock# Wage   Hours  OT   Gross   State  Fed      Net
                   State                           Pay     Tax    Tax      Pay
---------------------------------------------------------------------------------
Connie Cobol         MA  098401 10.60  51.0  11.0  598.90  29.95  149.73   419.23
Mary Apl             NH  526488  9.75  42.5   0.0  414.38   0.00  103.59   310.78
Frank Fortran        VT  765349 10.50  37.0   0.0  388.50  23.31   97.12   268.07
Jeff Ada             NY  034645 12.25  45.0   0.0  551.25  44.10  137.81   369.34
Anton Pascal         CA  127615  8.35  40.0   0.0  334.00  23.38   83.50   227.12
---------------------------------------------------------------------------------
Totals:                         51.45 215.5  11.0 2287.02 120.73  571.76  1594.53
Averages:                       10.29  43.1   2.2  457.40  24.15  114.35   318.91
Minimum:                         8.35  37.0   0.0  334.00   0.00   83.50   227.12
Maximum:                        12.25  51.0  11.0  598.90  44.10  149.73   419.23