Question:How to read a text file by c program 

Answer 
#include<stdio.h>
int main(){
char str[70];
FILE *p;
if((p=fopen("string.txt","r"))==NULL){
printf("\nUnable t open file string.txt");
exit(1);
}
while(fgets(str,70,p)!=NULL)
puts(str);
fclose(p);
return 0;
}
 

+ Report
Total Preview: 492
How to read a text file by c program
Copyright © 2024. Powered by Intellect Software Ltd