How to read a text file by c program










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










2.  Write a c program to delete a file.
3. Write a c program to copy a file from one location to other location.
6. Write a c program which writes string in the file.


7 comments:

Unknown said...

How to read a text file by c program

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

*****************************************

hi,
i am trying to compile this program in ubuntu oprating system but given some error,
plz give me the explanation.

Anonymous said...

you have to write #include

Anonymous said...

you have to write
stdlib header file.

Anonymous said...
This comment has been removed by the author.
Anonymous said...
This comment has been removed by the author.
Anonymous said...
This comment has been removed by the author.
Unknown said...

I want to make a simple bus management system project using file handling
Can you help me???