在C中如何把print出的文字,紀錄在一個文件中

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

方法一:

#include<stdio.h>

main()

{

FILE *fp;

int i=0;

char *s="Am I right?";

fp=fopen("c:\\text.txt","wr");

while(*s)

{ printf("%c",*s);

fseek(fp,i++,SEEK_SET);

fprintf(fp,"%c",*s++);

}

fclose(fp);

getchar();

}

方法二:

#include <stdio.h>

#include <conio.h>

#include <stdlib.h>

main()

{

FILE *fp;

char ch;

fp = fopen("F:\\file.txt","wb"); //写的方式打开文件,你把file.txt换成你自己的文件就ok

if( fp == NULL)

{ printf("can't open file.txt\n"); exit(1); } //打开文件失败则退出

scanf("%c",&ch);

while(ch != '*') //输入字符*则退出

{

printf("%c\n",ch);

fputc(ch,fp); //将ch写入你打开的文件

fflush(stdin); //清除输入缓冲区

scanf("%c",&ch); //继续输入一个字符

}

printf("input over!\n");

getch();

}

方法三:

#include <stdio.h>

#include <stdarg.h>

void xprintf(const char *pszFormat, ...)

{

char buf[1024] = {0};

FILE *cfPtr = fopen("1.log", "a");

va_list arg_ptr;

va_start(arg_ptr, pszFormat);

vsprintf(buf, pszFormat, arg_ptr);

va_end(arg_ptr);

printf("%s", buf);

if (cfPtr!=NULL)

{

fprintf(cfPtr, "%s", buf);

fclose(cfPtr);

}

}

int main(int argc, char *argv[])

{

xprintf("%-10d%s\n", 99, "hello world");

return 0;

}

方法四:

void WriteDat(void)

{

int i;

char xx[2][23]={"You He Me","I am a student."};//测试数据.

FILE *fp;

fp=fopen("OUT6.txt","a+");

for(i=0;i<2;i++)

{

printf("%s\n",xx[i]);//运行时在屏幕上显示

fprintf(fp,"%s\n",xx[i]);//写入文件,

}

fclose(fp);

}

方法五:

手动可以用重定向

a.out > out.txt

程序实现可以用fprintf

#include<stdio.h>

main()

{

FILE *fp;

int i=0;

char *s="Am I right?";

fp=fopen("c:\\text.txt","wr");

while(*s)

{ printf("%c",*s);

fseek(fp,i++,SEEK_SET);

fprintf(fp,"%c",*s);

s++;

}

fclose(fp);

getchar();

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航