Open In App
Related Articles

C Program to print contents of file

Improve Article
Improve
Save Article
Save
Like Article
Like

fopen() is used to open and fclose() is used to close a file in C




#include <stdio.h>
#include <stdlib.h> // For exit()
  
int main()
{
    FILE *fptr;
  
    char filename[100], c;
  
    printf("Enter the filename to open \n");
    scanf("%s", filename);
  
    // Open file
    fptr = fopen(filename, "r");
    if (fptr == NULL)
    {
        printf("Cannot open file \n");
        exit(0);
    }
  
    // Read contents from file
    c = fgetc(fptr);
    while (c != EOF)
    {
        printf ("%c", c);
        c = fgetc(fptr);
    }
  
    fclose(fptr);
    return 0;
}


Output:

Enter the filename to open
a.txt
/*Contents of a.txt*/
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 20 May, 2017
Like Article
Save Article
Previous
Next
Similar Reads