program that expands on the below program by reading each line in the file, and displays all of the lines read from the file to the screen before closing it. The code for this will occur after the code that prints a message confirming that the file has been opened successfully above and before closing the file.Program should then output the number of lines in the file. Test the program by creating a text file with at least 5 lines of text (of any composition).  #include  char c; int main (int argc, char **argv) { FILE* f; if (argc != 2) {  printf("No filename in the argument"); return 1; } f = fopen(argv[1], "r"); if (f == NULL) { printf("The file cannot be opened successfully: %s\n",argv[1]); return 1; } printf("The file has been opened successfully\n"); while( c != EOF)   {     c = fgetc(f); //read from file     printf("%c",c); //display on screen   }   fclose(f);    }

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter13: File Input And Output
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

Write a program that expands on the below program by reading each line in the file, and displays all of the lines read from the file to the screen before closing it. The code for this will occur after the code that prints a message confirming that the file has been opened successfully above and before closing the file.Program should then output the number of lines in the file. Test the program by creating a text file with at least 5 lines of text (of any composition). 

#include<stdio.h>

 char c;

int main (int argc, char **argv) {
FILE* f;

if (argc != 2) {
 printf("No filename in the argument");
return 1;
}

f = fopen(argv[1], "r");

if (f == NULL) {
printf("The file cannot be opened successfully: %s\n",argv[1]);
return 1;
}

printf("The file has been opened successfully\n");

while( c != EOF)
  {
    c = fgetc(f); //read from file
    printf("%c",c); //display on screen
  }

  fclose(f);
  
}

 

Expert Solution
steps

Step by step

Solved in 4 steps with 1 images

Blurred answer
Knowledge Booster
File Input and Output Operations
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Programming with Microsoft Visual Basic 2017
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:
9781337102124
Author:
Diane Zak
Publisher:
Cengage Learning