Write a program that creates a struct called employee. The employee struct has a name, an hourly wage, and numberOfHours
Posted: Tue Jul 05, 2022 10:19 am
Write a program that creates a struct called employee. Theemployee struct has a name, an hourly wage, andnumberOfHoursPerMonth. You are then to create a program thataccepts data for ten employees and saves the data in an array ofsize ten. Once you are done with that, you are to go over all theten employees in the array and print their hourlyWage multiplied bythe numberOfHoursPerMonth beside their name. (with comments)
For example:
Mona 100 Salma 500 Ahmed 600 ...
For example:
Mona 100 Salma 500 Ahmed 600 ...