基本內容
函式名: 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.
程式例
#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;
}