fprintf函数的用法有哪些?
1、函数声明
int fprintf (FILE* stream, const char*format, [argument])
2、参数
stream-- 这是指向 FILE 对象的指针,该 FILE 对象标识了流。
format-- 这是 C 字符串,包含了要被写入到流 stream 中的文本。它可以包含嵌入的 format 标签,format 标签可被随后的附加参数中指定的值替换,并按需求进行格式化。
format 标签属性是%[flags][width][.precision][length]specifier
[argument]:附加参数列表
3、功能
fprintf()函数根据指定的格式(format),向输出流(stream)写入数据(argument)。
4、函数说明
fprintf( )会根据参数format 字符串来转换并格式化数据,然后将结果输出到参数stream 指定的文件中,直到出现字符串结束('\0')为止。
程序示例:
#include <cstdio>
int main(void)
{
FILE *in,*out;
in = fopen("\\AUTOEXEC.BAT", "rt");
if(in == NULL)
{
fprintf(in, "Can not open inputfile.\n");
return 1;
}
out = fopen("\\AUTOEXEC.BAT", "wt");
if(out == NULL)
{
fprintf(out, "Can not open outputfile.\n");
return 1;
}
while(!feof(in))
fputc(fgetc(in), out);
fclose(in);
fclose(out);
return 0;
}
用法示例:将数据输入到文件1.txt中并打开1.txt文件。
#include <stdio.h>
#include <stdlib.h>
FILE* stream;
int main()
{
int i = 10;
double fp = 1.5;
char s[] = "this is a string";
char c = '\n';
stream = fopen("1.txt", "w");
fprintf(stream, "%s%c", s, c);
fprintf(stream, "%d\n", i);
fprintf(stream, "%f\n", fp);
fclose(stream);
system("1.txt");
return 0;
}
fprintf语法形式
1、函数声明
int fprintf (FILE* stream, const char*format, [argument])
2、参数
stream-- 这是指向 FILE 对象的指针,该 FILE 对象标识了流。
format-- 这是 C 字符串,包含了要被写入到流 stream 中的文本。它可以包含嵌入的 format 标签,format 标签可被随后的附加参数中指定的值替换,并按需求进行格式化。
[argument]:附加参数列表。