File operations are a set of actions you can perform on files, which are physical storage units on a computer disk. These operations include opening, reading, writing, and closing files. Each operation has a specific purpose, like retrieving data or saving new information.
Here's a real-world comparison: think of a file as a notebook. To write in it, you must first open it, just like in programming where you must use the `fopen()` function. Once open, you can write or read any entry, similar to using functions like `fscanf()` to read or `fprintf()` to write. Finally, closing a file with `fclose()` is akin to shutting your notebook to ensure your written pages are well preserved for future references.
FILE* file = fopen("example.txt", "r");
– Opening a file
fscanf(file, "%d", &number);
– Reading from a file
fprintf(file, "Example text");
– Writing to a file
fclose(file);
– Closing a file