rewind
C程序中的库函数
C 程序中的库函数功能是将文件内部的指针重新指向一个流的开头
基本内容
函数名: rewind()
功 能: 将文件内部的位置指针重新指向一个流(数据流/文件)的开头
注意:不是文件指针而是文件内部的位置指针,随着对文件的读写文件的位置指针(指向当前读写字节)向后移动。而文件指针是指向整个文件,如果不重新赋值文件指针不会改变。
rewind函数作用等同于 (void)fseek(stream, 0L, SEEK_SET);
用 法: void rewind(FILE *stream);
头文件: stdio.h
返回值:无
英文解释
A statement such as
rewind( cfptr );
causes a program's file position--which indicates the number of the next byte in the file to be read or written-- to be repositioned to the beginnning of the file pointed to by cfptr.
程序例
参考资料
最新修订时间:2024-02-19 00:08
目录
概述
基本内容
英文解释
参考资料