Write a program in c language to read the text file

#include <stdio.h>
#include <stdlib.h>
int main()
{
    char c[1000];
    FILE *fptr;

    if ((fptr = fopen("program.txt", "r")) == NULL)
    {
        printf("Error! opening file");
        exit(1);         
    }

    fscanf(fptr,"%[^\n]", c);

    printf("Data from the file:\n%s", c);
    fclose(fptr);
    
    return 0;
}

No comments:

Post a Comment

Admin Profile

Admin Profile
Welcome to My Vlog

Search This Blog

Powered by Blogger.

Unordered List

  • This section is the discription of the con.
  • Aliquam tincidunt mauris eu risus.
  • Vestibulum auctor dapibus neque.

Theme Support

Need our help to upload or customize this blogger template? Contact me with details about the theme customization you need.