Content deleted Content added
TakuyaMurata (talk | contribs) mNo edit summary |
m grammar |
||
Line 1:
In [[computer programming]], the <code>'''fopen'''</code>, with related functions <code>'''fdopen'''</code> and '''<code>freopen</code>''', is one of the basic functions in the [[C programming language]]. Because it is so popular
They are defined as.
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 [[
|