亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學(xué)習(xí)啦 > 學(xué)習(xí)英語(yǔ) > 專業(yè)英語(yǔ) > 計(jì)算機(jī)英語(yǔ) > c語(yǔ)言中fprintf的用法

      c語(yǔ)言中fprintf的用法

      時(shí)間: 長(zhǎng)思709 分享

      c語(yǔ)言中fprintf的用法

        函數(shù)說(shuō)明:fprintf()會(huì)根據(jù)參數(shù)format 字符串來(lái)轉(zhuǎn)換并格式化數(shù)據(jù), 然后將結(jié)果輸出到參數(shù)stream 指定的文件中, 直到出現(xiàn)字符串結(jié)束('

      c語(yǔ)言中fprintf的用法

      時(shí)間: 長(zhǎng)思709 分享

      c語(yǔ)言中fprintf的用法

        函數(shù)說(shuō)明:fprintf()會(huì)根據(jù)參數(shù)format 字符串來(lái)轉(zhuǎn)換并格式化數(shù)據(jù), 然后將結(jié)果輸出到參數(shù)stream 指定的文件中, 直到出現(xiàn)字符串結(jié)束('\0')為止。下面小編就跟你們?cè)敿?xì)介紹下c語(yǔ)言中fprintf的用法,希望對(duì)你們有用。

        c語(yǔ)言中fprintf的用法如下:

        相關(guān)函數(shù):printf, fscanf, vfprintf

        頭文件:#include <stdio.h>

        定義函數(shù):int fprintf(FILE * stream, const char * format, ...);

        返回值:關(guān)于參數(shù)format 字符串的格式請(qǐng)參考printf(). 成功則返回實(shí)際輸出的字符數(shù), 失敗則返回-1, 錯(cuò)誤原因存于errno 中.

        范例

        #include <stdio.h>

        main()

        {

        int i = 150;

        int j = -100;

        double k = 3.14159;

        fprintf(stdout, "%d %f %x \n", j, k, i);

        fprintf(stdout, "%2d %*d\n", i, 2, i);

        }

        執(zhí)行:

        -100 3.141590 96

        150 150

      ')為止。下面小編就跟你們?cè)敿?xì)介紹下c語(yǔ)言中fprintf的用法,希望對(duì)你們有用。

        c語(yǔ)言中fprintf的用法如下:

        相關(guān)函數(shù):printf, fscanf, vfprintf

        頭文件:#include <stdio.h>

        定義函數(shù):int fprintf(FILE * stream, const char * format, ...);

        返回值:關(guān)于參數(shù)format 字符串的格式請(qǐng)參考printf(). 成功則返回實(shí)際輸出的字符數(shù), 失敗則返回-1, 錯(cuò)誤原因存于errno 中.

        范例

        #include <stdio.h>

        main()

        {

        int i = 150;

        int j = -100;

        double k = 3.14159;

        fprintf(stdout, "%d %f %x \n", j, k, i);

        fprintf(stdout, "%2d %*d\n", i, 2, i);

        }

        執(zhí)行:

        -100 3.141590 96

        150 150

      522855