rewind

rewind

rewind - 必应词典

dict.bing.com.cn

rewind  riˈwaɪnd]    
词典释义:
  • v.  1. 重新卷绕
  • n.  1. 重卷
网络释义:
1. 倒带 2. 发条 3. 退卷
常见搭配:
例句朗读播放器
例句:  the  stream  the   can  a   which the    

函数名: rewind 功 能: 将文件内部的位置指针重新指向一个流(数据流/文件)的开头 注意:不是文件指针而是文件内部的位置指针,随着对文件的读写文件的位置指针(指向当前读写字节)向后移动。而文件指针是指向整个文件,如果不重新赋值文件指针不会改变。 用 法: 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. 程序例: #include <stdio.h> #include <dir.h> int main(void)

原文地址:https://www.cnblogs.com/lexus/p/2584157.html