Question: int Read_Data_File (struct address_t *address) { int num = 0; char line[30]; FILE *fp = fopen(InputFile ,r); do { fgets(line,sizeof(line), fp); if (strstr(line, none) ==
int Read_Data_File (struct address_t *address)
{
int num = 0;
char line[30];
FILE *fp = fopen(InputFile ,"r");
do
{
fgets(line,sizeof(line), fp);
if (strstr(line, "none") == NULL)
{
sscanf(line, "%d.%d.%d.%d %s", &address[num].IP1, &address[num].IP2,
&address[num].IP3, &address[num].IP4, address[num].ChName);
num++;
}
} while (strstr(line, "none") == NULL);
fclose(fp);
return num;
}
Can you change the above code WITHOUT using a Do-WHILE LOOP
Step by Step Solution
There are 3 Steps involved in it
Certainly You can replace the dowhile loop with a while loop in the given code This change requires ... View full answer
Get step-by-step solutions from verified subject matter experts
