Study the program carefully and answer the below questions; Hint: you might run the program before starting answering the questions! e) Show the output of the program. Assume that the file numbers.txt contains the data shown above f) As the program contains nested while loop, determine how many times the following statements will be executed: Assume that the file numbers.At contains the data shown above 1) infile = fopen( "numbers.txt" , "r" ); time(s) 2) printf("%d is read from the file\n" , number); -. time(s) 3) digit = temp % 10 ; .. time(s) 4) printf("%d is a palindrome number! \n\n", number); - time(s) g) How many times does the program check the condition of the outer while loop, i.e., status != EOF ? Assume that the file numbers.txt contains the data shown above

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
100%
#include <stdio.h>
#includecstdlib.h>
int main(void){
int number , reverse = 0, digit, temp;
FILE *infile, "outfile;
int status;
//open the input file and check if an error occurred
infile = fopen( "numbers.txt" , "r" );//open the input file
if(infile == NULL){
printf("Error: File \"numbers.txt\" not foundl\n");
exit (1);
//open the output file and check if error occurred
outfile = fopen( "Report.txt", "w" );
if(outfile == NULL)X
printf("Error: File \"Report.txt\" can not be created!\n");
exit (1);
status = fscanf(infile, "%d" , &number); /read first number from the file
while(status != EOF){
printf("%d is read from the file\n" , number);
fprintf(outfile, "%8d" , number);
//To read all the numbers in the file
//compute the reverse of the number
temp = number ;
reverse = 0;
while(temp != 0)X
digit = temp % 10;
reverse = reverse * 10 + digit ;
temp = temp/10;
printf("The reverse is: %d \n", reverse);
fprintf(outfile , "%8d" , reverse);
//check whether the number is palindrome
if(number == reverse){
printf("%d is a palindrome number! \n\n", number);
fprintf(outfile , "\t Palindrome\n" );
else
printf("%d is not a palindrome number! \n\n", number);
fprintf(outfile, "\t Non-Palindrome\n" );
}
//read another number from the file
status = fscanf(infile , "%d" , &number);
}
//close the files
fclose(infile);
fclose(outfile);
return O;
Page 6 of 8
Transcribed Image Text:#include <stdio.h> #includecstdlib.h> int main(void){ int number , reverse = 0, digit, temp; FILE *infile, "outfile; int status; //open the input file and check if an error occurred infile = fopen( "numbers.txt" , "r" );//open the input file if(infile == NULL){ printf("Error: File \"numbers.txt\" not foundl\n"); exit (1); //open the output file and check if error occurred outfile = fopen( "Report.txt", "w" ); if(outfile == NULL)X printf("Error: File \"Report.txt\" can not be created!\n"); exit (1); status = fscanf(infile, "%d" , &number); /read first number from the file while(status != EOF){ printf("%d is read from the file\n" , number); fprintf(outfile, "%8d" , number); //To read all the numbers in the file //compute the reverse of the number temp = number ; reverse = 0; while(temp != 0)X digit = temp % 10; reverse = reverse * 10 + digit ; temp = temp/10; printf("The reverse is: %d \n", reverse); fprintf(outfile , "%8d" , reverse); //check whether the number is palindrome if(number == reverse){ printf("%d is a palindrome number! \n\n", number); fprintf(outfile , "\t Palindrome\n" ); else printf("%d is not a palindrome number! \n\n", number); fprintf(outfile, "\t Non-Palindrome\n" ); } //read another number from the file status = fscanf(infile , "%d" , &number); } //close the files fclose(infile); fclose(outfile); return O; Page 6 of 8
Question #2:
The following program reads integer numbers from a file named numbers.txt. For each number, the program
computes the reverse in order to check whether the number is a palindrome number or not. It then reports the
results into a file named Report.txt (A palindrome is any number whose reverse is also same, e.g., 1221, 23432, 7, 8 are
palindromes, but 23489 is not).
Suppose the file numbers.txt contains the following numbers:
373
11
2552
5
3561
numbers.txt
Study the program carefully and answer the below questions;
Hint: you might run the program before starting answering the questions!
e) Show the output of the program. Assume that the file numbers.txt contains the data shown above
f) As the program contains nested while loop, determine how many times the following statements will
be executed: Assume that the file numbers.txt contains the data shown above
1) infile = fopen( "numbers.txt" , "" );
....... time(s)
2)
printf("%d is read from the file\n" , number);
- time(s)
3) digit = temp % 10;
time(s)
.....
4) printf("%d is a palindrome number! \n\n", number);
time(s)
g) How many times does the program check the condition of the outer while loop, i.e., status != EOF ?
Assume that the file numbers.txt contains the data shown above
* . time(s)
Page 5 of 8
Transcribed Image Text:Question #2: The following program reads integer numbers from a file named numbers.txt. For each number, the program computes the reverse in order to check whether the number is a palindrome number or not. It then reports the results into a file named Report.txt (A palindrome is any number whose reverse is also same, e.g., 1221, 23432, 7, 8 are palindromes, but 23489 is not). Suppose the file numbers.txt contains the following numbers: 373 11 2552 5 3561 numbers.txt Study the program carefully and answer the below questions; Hint: you might run the program before starting answering the questions! e) Show the output of the program. Assume that the file numbers.txt contains the data shown above f) As the program contains nested while loop, determine how many times the following statements will be executed: Assume that the file numbers.txt contains the data shown above 1) infile = fopen( "numbers.txt" , "" ); ....... time(s) 2) printf("%d is read from the file\n" , number); - time(s) 3) digit = temp % 10; time(s) ..... 4) printf("%d is a palindrome number! \n\n", number); time(s) g) How many times does the program check the condition of the outer while loop, i.e., status != EOF ? Assume that the file numbers.txt contains the data shown above * . time(s) Page 5 of 8
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY