C file input/output: Difference between revisions

Content deleted Content added
No edit summary
mNo edit summary
Line 7:
:<code>FILE * freopen(const char *path, const char *mode, FILE * restrict stream);</code>
 
In some libraries, <code>mode</code> can include a letter '''b''', which indicates the given file is a [[binary file]]. Without that, a sequence of [[carring return]] and [[line feed]] is automatically regarded as line feed. See [[new line]] for new line issue.