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

1 Expert Approved Answer
Step: 1 Unlock

Certainly You can replace the dowhile loop with a while loop in the given code This change requires ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!