DYNAMIC-LINKED-LISTS-WITH-POINTERS-computer-science-homework-help

DYNAMIC LINKED LISTS WITH POINTERS

Write a C program that will calculate the gross pay of a set of employees.

WHAT YOU NEED TO DO:

The program should prompt the user to enter the number of hours each employee worked.

The program determines the overtime hours (anything over 40 hours), the gross pay and then outputs a table in the following format. Column alignment, leading zeros in Clock#, and zero suppression in float fields is important. Use 1.5 as the overtime pay factor.

You should implement this program using the following structure to store the information for each employee.

struct employee
{
    char first_name [10];
    char last_name [10];
    int id_number;            Â /* use can use long int if you wish */
    float wage;
    float hours;
    float overtime;
    float gross;

   Â struct employee *next;
};

Create a linked list of structures using the following data:

Connie Cobol 98401 10.60
Mary Apl 526488 9.75
Frank Fortran 765349 10.50
Jeff Ada 34645 12.25
Anton Pascal 127615 8.35

Unlike previous assignment, you need to prompt the user for all of the above information, … and you still need to prompt for the hours worked for each employee.

Hint: Use one or two scanf statements to read in the first and last names with the %s format.

Get the data above from the terminal, and for each one:

  • get dynamic memory, using malloc, for an employee node
  • put the employee data in the dynamic memory node
  • link the nodes with pointers in the above order

After the list pointers are in place you must get at the second and later instances of the structure by going from the first structure down the chain of list pointers.

Then, for each employee, read in the hours worked from the terminal. Do all appropriate computations, and write out the table.

Use the template and dynamically allocate linked list nodes as needed.  Similar to the previous assignment:

a) Add a Total row at the end to sum up the hours, overtime, and gross columns
b) Add an Average row to print out the average of the hours, overtime, and gross columns.

Your code should work for any number of employees, and that is how the template is designed.

Tip: Use left justification to line up character array name values … for example: %-10.10s or %-10s


Remember: Please use the template below!

http://ideone.com/8p8Af7