Computer Science, asked by Chitrali1952, 1 year ago

C program read data from file and write date to file

Answers

Answered by praggya77
0

C program to illustrate how a file stored on the disk is read.

#include <stdlib.h>

FILE *fptr;

char filename[15];

char ch;

printf("Enter the filename to be opened \n");

scanf("%s", filename);

/* open the file for reading

Similar questions