FOpen
fopen is a standard C library function declared in stdio.h. It opens a file and returns a pointer to a FILE object that can be used with the standard I/O facilities. The function takes two arguments: the path to the file and a mode string. On success, a stream associated with the file is returned; on error, NULL is returned and errno is set.
Mode strings specify how the file is accessed. Common modes are 'r' for reading, 'w' for writing,
Return value: On success, a non-null FILE pointer is returned; the caller must call fclose to release
Notes: fopen respects the host system's file permissions and path conventions. Some environments provide a secure