Write a definition for a structure type for personnel records for hourly employees. The record contains an hourly wage rate, accrued vacation in an integer number of days, and employee status (use ‘T’ for temporary and ‘P’ for permanent). Part of the problem is appropriate choices of type and member names.

What will be an ideal response?

```
struct HourlyEmployee
{ double wageRate;
int accruedVacation;
char status; // ‘P’ for permanent, ‘T’ for temporary
```

Computer Science & Information Technology

You might also like to view...

When using subtotal, what does the 4th button of the outline levels do?

A) Displays subtotals by the main subtotal category, the secondary subtotal category, and the grand total B) Displays subtotals by the main subtotal category and the grand total C) Displays the entire list D) Collapses the outline to display the grand total only

Computer Science & Information Technology

You can reduce the size of the ________ on a sheet to fit all of the data on the printed page

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology