What is the difference between a system call and a function call? Is fopen() a system call or a function call?
fopen is a function call, but it may sometimes be referred to as a system call because it is ultimately handled by the "system" (the OS). fopen is built into the C runtime library.
fopen