notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

stdio.md (448B)


      1 # stdio
      2 
      3 **Source:** C Programming Book
      4 
      5 **Chapter:** 7
      6 
      7 ## Functionality
      8 
      9 The C stdio library provides functionality for file IO and writing to stdout. 
     10 
     11 To me, the only two functions that I did not expect to be in this library but were are `remove()` which deletes a file and `rename()` which renames a file.
     12 
     13 I suppose deletion is a standard IO operation, and renaming is also because creation and deletion of files to emulate this is wasteful.