Select Menu

Slider

Software's

Transportation

Cement Testing

Inventor

Manual Survey Practical

Quantity Surveying

Videos

» » To write a sentence to a file(C- Programming)
«
Next
Newer Post
»
Previous
Older Post


#include <stdio.h> #include <stdlib.h> /* For exit() function */ int main() { char c[1000]; FILE *fptr; fptr=fopen("program.txt","w"); if(fptr==NULL){ printf("Error!"); exit(1); } printf("Enter a sentence:\n"); gets(c); fprintf(fptr,"%s",c); fclose(fptr); return 0; }

«
Next
Newer Post
»
Previous
Older Post

No comments

Leave a Reply

Post Your Comments