opening files in c though code code example
Example 1: write a binary file c
FILE *write_ptr;
write_ptr = fopen("test.bin","wb");
fwrite(buffer,sizeof(buffer),1,write_ptr);
Example 2: c program to read and write to a file
int main() {
FILE *fp;
char ch;
fp= fopen ('example.txt', 'r');
while( (ch = getc(fp)) != EOF) {
printf('%ch', ch);
}
fclose(fp);
return 0;
}
Example 3: how to take inputs and give outputs from a file in c
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;
}