Tag Archives: system call

File I/O with open() or fopen()

open() is a standardized system call provided by a POSIX compliant OS whereas fopen() is a C library function provided by the C implementation and/or run time library. Following are some reasons why to use fopen() over open() fopen()provides you file stream with buffering IO that … Continue reading

Posted in /insight | Tagged , , | Leave a comment