Write C code which will read a line of characters (terminated by a \n) from input_file into a character array called buffer. NULL terminate the buffer upon reading a \n. NOTE: Your source code must display any of the given sample output below. It means your source code should be flexible enough to meet any of the given sample output. Your source code output must be identical to any of the given sample output. It means you have to strictly follow what are the displayed text, labels, casing of characters in the sample output. Strictly follow the naming of file. Sample OUTPUT1: Enter File Name: lupang_hinirang.txt Bayang magiliw Perlas ng silanganan Alab ng puso sa dibdib mo’y buhay Lupang Hinirang, duyan ka ng magiting Sa manlulupig, di ka pasisiil Sa dagat at bundok na simoy At sa langit mong bughaw Tagumpay na nagnininging Ang bituin at araw niyan Kailan pa ma’y di magdidilim Lupa ng araw ng luwalhati’t pagsinta Buhay ay langit sa piling mo Aming ligaya nang pag may mang-aapi Ang mamatay ng dahil sa iyo Sample OUTPUT2: Enter File Name: panatang_makabayan.txt Iniibig ko ang Pilipinas, aking lupang sinilangan, tahanan ng aking lahi; kinukupkop ako at tinutulungang maging malakas, masipag at marangal. Dahil mahal ko ang Pilipinas, diringgin ko ang payo ng aking magulang, susundin ko ang tuntunin ng paaralan, tutuparin ko ang tungkulin ng mamamayang makabayan: naglilingkod, nag-aaral at nagdarasal nang buong katapatan. Iaalay ko ang aking buhay, pangarap, pagsisikap sa bansang Pilipinas. Sample OUTPUT3: Enter File Name: lupang_makabayan.txt The file can’t be open. File does not exists. Help me how to fix my code!  I'll rate!  The code #include int main(){ char filename[100];//variable to store filename in char line[10000],ch=' ';//input buffers int idx=0; //input of filename printf("\n\tEnter File Name: "); scanf("%s",&filename); FILE *input;//pointer to file if((input = fopen(filename,"r"))){ while(ch != EOF){//until end of file is reached ch = fgetc(input);//read next character if(ch=='\n' || ch==EOF){//if it is a newline character,print the line printf("\t"); int i; for(i=0;i

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

Write C code which will read a line of characters (terminated by a \n) from input_file into a character array called buffer. NULL terminate the buffer upon reading a \n.

NOTE:
Your source code must display any of the given sample output below.
It means your source code should be flexible enough to meet any of the given sample output.
Your source code output must be identical to any of the given sample output.
It means you have to strictly follow what are the displayed text, labels, casing of characters in the sample output.
Strictly follow the naming of file.
Sample OUTPUT1:
Enter File Name: lupang_hinirang.txt
Bayang magiliw
Perlas ng silanganan
Alab ng puso sa dibdib mo’y buhay
Lupang Hinirang, duyan ka ng magiting
Sa manlulupig, di ka pasisiil
Sa dagat at bundok na simoy
At sa langit mong bughaw
Tagumpay na nagnininging
Ang bituin at araw niyan
Kailan pa ma’y di magdidilim
Lupa ng araw ng luwalhati’t pagsinta
Buhay ay langit sa piling mo
Aming ligaya nang pag may mang-aapi
Ang mamatay ng dahil sa iyo
Sample OUTPUT2:
Enter File Name: panatang_makabayan.txt
Iniibig ko ang Pilipinas,
aking lupang sinilangan,
tahanan ng aking lahi;
kinukupkop ako at tinutulungang
maging malakas, masipag at marangal.
Dahil mahal ko ang Pilipinas,
diringgin ko ang payo
ng aking magulang,
susundin ko ang tuntunin ng paaralan,
tutuparin ko ang tungkulin
ng mamamayang makabayan:
naglilingkod, nag-aaral at nagdarasal
nang buong katapatan.
Iaalay ko ang aking buhay,
pangarap, pagsisikap
sa bansang Pilipinas.
Sample OUTPUT3:
Enter File Name: lupang_makabayan.txt
The file can’t be open. File does not exists.

Help me how to fix my code! 

I'll rate! 

The code

#include<stdio.h>

int main(){
char filename[100];//variable to store filename in
char line[10000],ch=' ';//input buffers
int idx=0;
//input of filename
printf("\n\tEnter File Name: ");
scanf("%s",&filename);
FILE *input;//pointer to file
if((input = fopen(filename,"r"))){
while(ch != EOF){//until end of file is reached
ch = fgetc(input);//read next character
if(ch=='\n' || ch==EOF){//if it is a newline character,print the line
printf("\t");
int i;
for(i=0;i<idx;i++)
printf("%c",line[i]);
printf("\n");
idx=0;
}
else{//else add the current character to the buffer/array of char
line[idx]=ch;
idx++;
}
}
}
else{
printf("\tThe file can't be open. File does not exits.");
}
fclose(input);//close the file
return 0;
}

 

#include<stdio.h>
2
LAST RUN on 3/28/2021, 5:08:17 AM
int main(){
Check 1 passed
char filename[100];//variable to store filename in
Check 2 passed
char line[10000],ch=' ';//input buffers
int idx=0;
//input of filename
printf("\n\tEnter File Name: ");
scanf ("%s",&filename);
FILE *input;//pointer to file
if((input = fopen (filename, "r"))){
5
Check 3 failed
6
7
Output:
8
Segmentation fault (core dumped)
9
Expected:
10
11 -
Enter File Name:
12 -
while(ch != EOF){//until end of file is reached
The file can't be open. File does not exists.
ch = fgetc(input);//read next character
if(ch=='\n' || ch==EOF){//if it is a newline character,print the line
13
14 -
printf("\t");
int i;
15
Show diff
16
17
for (i=0;i<idx;i++)
18
printf("%c",line[i]);
printf("\n");
idx=0;
19
20
}
else{//else add the current character to the buffer/array of char
21
22 -
23
line[idx]=ch;
idx++;
24
25
26
}
27
28 -
else{
29
printf("\tThe file can't be open. File does not exits.");
30
fclose (input);//close the file
31
32
return 0;
33
Transcribed Image Text:#include<stdio.h> 2 LAST RUN on 3/28/2021, 5:08:17 AM int main(){ Check 1 passed char filename[100];//variable to store filename in Check 2 passed char line[10000],ch=' ';//input buffers int idx=0; //input of filename printf("\n\tEnter File Name: "); scanf ("%s",&filename); FILE *input;//pointer to file if((input = fopen (filename, "r"))){ 5 Check 3 failed 6 7 Output: 8 Segmentation fault (core dumped) 9 Expected: 10 11 - Enter File Name: 12 - while(ch != EOF){//until end of file is reached The file can't be open. File does not exists. ch = fgetc(input);//read next character if(ch=='\n' || ch==EOF){//if it is a newline character,print the line 13 14 - printf("\t"); int i; 15 Show diff 16 17 for (i=0;i<idx;i++) 18 printf("%c",line[i]); printf("\n"); idx=0; 19 20 } else{//else add the current character to the buffer/array of char 21 22 - 23 line[idx]=ch; idx++; 24 25 26 } 27 28 - else{ 29 printf("\tThe file can't be open. File does not exits."); 30 fclose (input);//close the file 31 32 return 0; 33
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

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