Question: C PROGRAMMING QUESTIONS Assume that we have a struct defined as following: typedef struct { char name[20]; int age; double hourlyRage; } Employee; And we
C PROGRAMMING QUESTIONS
Assume that we have a struct defined as following:
typedef struct {
char name[20];
int age;
double hourlyRage;
} Employee;
And we have defined an array of this struct:
Employee team[20];
How do you write the code to read user input into the team element at index 4?
Ignore the user prompt parts with printf, just use scanf.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
