C語言 庫函數(shù) rewind()
C語言 庫函數(shù) rewind()
C 庫函數(shù) void rewind(FILE *stream) 設置文件位置為給定流 stream 的文件的開頭。
1. 聲明
下面是 rewind() 函數(shù)的聲明。
void rewind(FILE *stream)
2. 參數(shù)
- stream -- 這是指向 FILE 對象的指針,該 FILE 對象標識了流。
3. 返回值
該函數(shù)不返回任何值。
4. 實例
下面的實例演示了 rewind() 函數(shù)的用法。
#include <stdio.h> int main() { char str[] = "This is codebaoku.cn"; FILE *fp; int ch; /* 首先讓我們在文件中寫入一些內容 */ fp = fopen( "file.txt" , "w" ); fwrite(str , 1 , sizeof(str) , fp ); fclose(fp); fp = fopen( "file.txt" , "r" ); while(1) { ch = fgetc(fp); if( feof(fp) ) { break ; } printf("%c", ch); } rewind(fp); printf("\n"); while(1) { ch = fgetc(fp); if( feof(fp) ) { break ; } printf("%c", ch); } fclose(fp); return(0); }
假設我們有一個文本文件 file.txt,它的內容如下:
This is codebaoku.cn
讓我們編譯并運行上面的程序,這將產生以下結果:
This is codebaoku.cn This is codebaoku.cn