C語言 庫函數(shù) rewind()

C語言 庫函數(shù) rewind()

C語言 標準庫 - <stdio.h>C語言 標準庫 - <stdio.h>

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

C語言 標準庫 - <stdio.h>C語言 標準庫 - <stdio.h>

下一節(jié):C 庫函數(shù) setbuf()

C 簡介

相關文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频