rewind (C程式中的庫函式)

2puT發表於2016-07-15

C 程式中的庫函式,功能是將檔案內部的指標重新指向一個流的開頭
中文名
rewind
含    義
函式名
功 能
指向一個資料流/檔案的開頭
用 法
void rewind

基本內容

編輯
函式名: rewind()
功 能: 將檔案內部的位置指標重新指向一個流(資料流/檔案)的開頭
注意:不是檔案指標而是檔案內部的位置指標,隨著對檔案的讀寫檔案的位置指標(指向當前讀寫位元組)向後移動。而檔案指標是指向整個檔案,如果不重新賦值檔案指標不會改變。
rewind函式作用等同於 (void)fseek(stream, 0L, SEEK_SET);[1] 
用 法: 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)
{
FILE *fp;
char fname[10] = "TXXXXXX", *newname, first;
newname = mktemp(fname);
fp = fopen(newname,"w+");
if(NULL==fp)
return 1;
fprintf(fp,"abcdefghijklmnopqrstuvwxyz");
rewind(fp);
fscanf(fp,"%c",&first);
printf("The first character is: %c\n",first);
fclose(fp);
remove(newname);
return 0;
}

相關文章