how to write c output to file code example
Example 1: c program to read and write to a file
#include <stdio.h>
int main() {
FILE *fp;
char ch;
fp= fopen ('example.txt', 'r');
while( (ch = getc(fp)) != EOF) {
printf('%ch', ch);
}
fclose(fp);
return 0;
}
Example 2: how to take inputs and give outputs from a file in c
#include<stdio.h>
int main()
{
FILE *fp;
char ch;
fp = fopen("one.txt", "w");
printf("Enter data...");
while( (ch = getchar()) != EOF) {
putc(ch, fp);
}
fclose(fp);
fp = fopen("one.txt", "r");
while( (ch = getc(fp)! = EOF)
printf("%c",ch);
fclose(fp);
return 0;
}