Wiki Markup |
---|
Section |
The C99 fopen()
function can open streams to which both input and output may be performed. This functionality is known as "update" mode and is signified by using '{+}' as the second or third character in the mode string to fopen()
.
However, section
7.19.5.3 of C99 places the following restrictions on update streams: \[[ISO/IEC 9899:1999|AA. C References#ISO/IEC 9899-1999]\] |
When a file is opened with update mode ('{
+
}' as the second or third character in the above list of mode argument values), both input and output may be performed on the associated stream. However, output shall not be directly followed by input without an intervening call to thefflush
function or to a file positioning function (fseek
,fsetpos
, orrewind
), and input shall not be directly followed by output without an intervening call to a file positioning function, unless the input operation encounters end-of-file. Opening (or creating) a text file with update mode may instead open (or create) a binary stream in some implementations.
...