C語言中的fprintf函數

來源:互聯網
上載者:User

  fprintf 簡介   c/c++語言函數: fprintf 功 能   傳送格式化輸出到一個檔案中 用 法   #include <stdio.h>   int fprintf( FILE *stream, const char *format, ... );   fprintf()函數根據指定的format(格式)(格式)發送資訊(參數)到由stream(流)指定的檔案. fprintf()只能和printf()一樣工作. fprintf()的傳回值是輸出的字元數,發生錯誤時返回一個負值. 傳回值   成功時返迴轉換的位元組數,失敗時返回一個負數.   在LINUX/UNIX操系統中成功返回0,失敗返回-1。共置errno值. 程式例   /* Program to create backup of the   AUTOEXEC.BAT file */   #include <stdio.h>   int main(void)   {   FILE *in, *out;   if ((in = fopen("//AUTOEXEC.BAT", "rt")) == NULL)   {   fprintf(stderr, "Cannot open input file./n");   return 1;   }   if ((out = fopen("//AUTOEXEC.BAK", "wt")) == NULL)   {   fprintf(stderr, "Cannot open output file./n");   return 1;   }   while (!feof(in))   fputc(fgetc(in), out);   fclose(in);   fclose(out);   return 0;   }   舉例用法:   #include <stdio.h>   #include <process.h>   FILE *stream;   void main( void )   {   int i = 10;   double fp = 1.5;   char s[] = "this is a string";   char c = '/n';   stream = fopen( "fprintf.out", "w" );   fprintf( stream, "%s%c", s, c );   fprintf( stream, "%d/n", i );   fprintf( stream, "%f/n", fp );   fclose( stream );   system( "type fprintf.out" );   }   螢幕輸出:   this is a string   10   1.500000   格式化規定符   %d 十進位有符號整數   %u 十進位不帶正負號的整數   %f 浮點數   %s 字串   %c 單個字元   %p 指標的值   %e 指數形式的浮點數   %x, %X 無符號以十六進位表示的整數   %0 無符號以八進位表示的整數   %g 自動選擇合適的標記法  

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.