Answered step by step
Verified Expert Solution
Question
1 Approved Answer
How to fix this error message? function definition for read not found typedef struct Employee { char first[8]; char initial[2]; char last[10]; char street[17]; char
How to fix this error message?
function definition for read not found
typedef struct Employee
{ char first[8]; char initial[2]; char last[10]; char street[17]; char city[12]; char state[3]; char zip[6]; int age; char sex[2]; int tenure; float salary; }Employee;
// function prototypes void strsub(char buf[], char sub[], int start, int end); int read(FILE* infile, struct Employee workers[MAX]); //this is where I get the error message void write(FILE* outfile, struct Employee workers[MAX], int count);
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started