#include #include #include using namespace std; struct Employee { int empNumber; // Employee number double hours; // Hours worked double payRate; // Hourly payRate }; int main() { Employee emp1 = { 1, 10 , 5 } ; // Create a second employee object and initialize it with emp2 with id 2 // hours 20 and payrate 6 //Print pay of emp1 and pay of emp2. Pay is hours * payRate }