C program to read a line from a file and display it

PROGRAM:

 
#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;
}


NOTICE:

The file program.txt should be created otherwise it prints an error message


MASTER OTHER EXAMPLES: