Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Strategic management concepts

Authors: Fred david

13th Edition

9780136120988, 136120997, 136120989, 978-0136120995