type of file handling function in C code example
Example: file in C
//to open a file
FILE=*fp;
fp=fopen("one.txt", "w");
//to close file
fclose(fp);
//to open a file
FILE=*fp;
fp=fopen("one.txt", "w");
//to close file
fclose(fp);