After every successful file operation, you must always close a file
C automatically closes all opened files after program execution
During program execution, better to close opened files to avoid any unintended modification to the content
Closing a file using fclose(file_pointer);
file_pointer: the pointer connected to the file