c語言中fprintf的用法
c語言中fprintf的用法
函數說明:fprintf()會根據參數format 字符串來轉換并格式化數據, 然后將結果輸出到參數stream 指定的文件中, 直到出現字符串結束('
c語言中fprintf的用法
c語言中fprintf的用法
函數說明:fprintf()會根據參數format 字符串來轉換并格式化數據, 然后將結果輸出到參數stream 指定的文件中, 直到出現字符串結束('\0')為止。下面小編就跟你們詳細介紹下c語言中fprintf的用法,希望對你們有用。
c語言中fprintf的用法如下:
相關函數:printf, fscanf, vfprintf
頭文件:#include <stdio.h>
定義函數:int fprintf(FILE * stream, const char * format, ...);
返回值:關于參數format 字符串的格式請參考printf(). 成功則返回實際輸出的字符數, 失敗則返回-1, 錯誤原因存于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語言中fprintf的用法如下:
相關函數:printf, fscanf, vfprintf
頭文件:#include <stdio.h>
定義函數:int fprintf(FILE * stream, const char * format, ...);
返回值:關于參數format 字符串的格式請參考printf(). 成功則返回實際輸出的字符數, 失敗則返回-1, 錯誤原因存于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