C語言 庫函數(shù) rewind()
C語言 庫函數(shù) rewind()
C語言 標(biāo)準(zhǔn)庫 - <stdio.h>
C 庫函數(shù) void rewind(FILE *stream) 設(shè)置文件位置為給定流 stream 的文件的開頭。
1. 聲明
下面是 rewind() 函數(shù)的聲明。
void rewind(FILE *stream)
2. 參數(shù)
- stream -- 這是指向 FILE 對象的指針,該 FILE 對象標(biāo)識了流。
3. 返回值
該函數(shù)不返回任何值。
4. 實例
下面的實例演示了 rewind() 函數(shù)的用法。
#include <stdio.h> int main() { char str[] = "This is codebaoku.cn"; FILE *fp; int ch; /* 首先讓我們在文件中寫入一些內(nèi)容 */ 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); }
假設(shè)我們有一個文本文件 file.txt,它的內(nèi)容如下:
This is codebaoku.cn
讓我們編譯并運行上面的程序,這將產(chǎn)生以下結(jié)果:
This is codebaoku.cn This is codebaoku.cn
相關(guān)文章
- C++ 變量作用域
- C++ 異常處理
- C++ 預(yù)處理器
- C++ 多線程
- C語言 環(huán)境設(shè)置
- C語言 標(biāo)準(zhǔn)庫 <locale.h>
- C語言 標(biāo)準(zhǔn)庫 <setjmp.h>
- C語言 標(biāo)準(zhǔn)庫 <string.h>
- C# 教程
- C# 運算符
- C# 循環(huán)語句
- C# 異常處理
- C# 委托 Delegate
- C# 不安全代碼
- C++ 引用調(diào)用
- C++ this 指針
- C# Windows 文件系統(tǒng)的操作
- C# 隊列(Queue)
- C# 傳遞數(shù)組給函數(shù)
- C# continue 語句