there is a part about UNIX system functions in R&K C programming guide.
there are system calls like read()
, write()
, open()
or etc ,while we can use scanf()
, printf()
, fopen()
or other c library functions to do the same work.
so what do we need C library functions instead of them?
why do we need to know and use UNIX system functions in C programming while we have that functions in C library?