belongs to collection: C programs - File Handling
This C Program illustrates reading of data from a file. The program opens a file which is present. Once the file opens successfully, it uses fgetc() library call to read the content.
C program to illustrate reading of data from a File - Source code
void main() { FILE *fptr; char filename[15]; char ch; printf("Enter the filename to be opened \n"); scanf("%s", filename); /* open the file for reading */ fptr = fopen(filename, "r"); if (fptr == NULL) { printf("Cannot open file \n"); exit(0); } ch = fgetc(fptr); while (ch != EOF) { printf ("%c", ch); ch = fgetc(fptr); } fclose(fptr); }
Program Output
Enter the filename to be opened emp.rec Name = Suresh Age = 25 Salary = 50000.00
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
C program to illustrate reading of data from a File - Source code
Program Output
need an explanation for this answer? contact us directly to get an explanation for this answer