C语言 fprintf和fscanf 怎么用
fprintf(fp,"%d",i);←意思是不是将i中的数,以整数的形式输入到fp所指向文本fprintf(fp,"123456");←这样也行吧,直接把123456输...
fprintf (fp,"%d",i); ←意思是不是将i中的数,以整数的形式输入到fp所指向文本
fprintf (fp,"123456"); ← 这样也行吧,直接把123456输入到fp指向的文本里
fscanf (fp,"%d",&n); ← 这个意思是不是将fp指向的文本内容,以整数的方式输入到n里? 展开
fprintf (fp,"123456"); ← 这样也行吧,直接把123456输入到fp指向的文本里
fscanf (fp,"%d",&n); ← 这个意思是不是将fp指向的文本内容,以整数的方式输入到n里? 展开
展开全部
fprintf和fscanf都是对文件进行操作的函数。下面通过具体的实例来说明其用法:
函数名: fscanf
功 能: 从一个流中执行格式化输入
用 法: int fscanf(FILE *stream, char *format[,argument...]);
程序例:
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
int i;
printf("Input an integer: ");
/* read an integer from the
standard input stream */
if (fscanf(stdin, "%d", &i))
printf("The integer read was: %i\n", i);
else
{
fprintf(stderr, "型森型Error reading an integer from stdin.\n");
exit(1);
}
return 0;
}
函数名: fprintf
功 能: 传送格式化输出到一个卜猜流中
用春清 法: int fprintf(FILE *stream, char *format[, argument,...]);
程序例:
#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;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询