摘要:
DescriptionThe C library functionvoid rewind(FILE *stream)sets the file position to the beginning of the file of the givenstream.DeclarationFollowing ... 阅读全文
摘要:
DescriptionThe C library functionFILE *freopen(const char *filename, const char *mode, FILE *stream)associates a newfilenamewith the given open stream... 阅读全文
摘要:
DescriptionThe C library functionFILE *tmpfile(void)creates a temporary file in binary update mode (wb+). The temporary file created is automatically ... 阅读全文