To Read a string of text from file (C-Programming) Posted by: Sathya Prakash Posted date: Friday, January 10, 2014 / comment : 0 #include <stdio.h> #include <stdlib.h> /* For exit() function*/ int main() { char c[1000]; FILE *fptr; if ((fptr=fopen("program.txt","r"))==NULL){ printf("Error! opening file"); exit(1); /* Program exits if file pointer returns NULL. */ } fscanf(fptr,"%[^\n]",c); printf("Data from file:\n%s",c); fclose(fptr); return 0; } Share !
No comments