当前位置: 代码迷 >> C语言 >> [求助]菜鸟问题~
  详细解决方案

[求助]菜鸟问题~

热度:226   发布时间:2007-04-06 21:36:46.0
[求助]菜鸟问题~
如何用C语言写一个,创建一个文档在里面写入些字符串?
搜索更多相关的解决方案: C语言  文档  字符  

----------------解决方案--------------------------------------------------------

强哥的那本书里面的"文件"那章里有.


----------------解决方案--------------------------------------------------------
#include <stdio.h>
#include <conio.h>
#include <process.h>
int main(void)
{
FILE *pFile=NULL;
clrscr();
if((fFile=fopen("test.txt","w'))==NULL)
{
printf("Can't open file\n");
printf("Press any key to end");
getch();
exit(0);
}
else
{
fprintf(fFile,"hello world");
}
fclose(pFile);
printf("Please open the file \"test.txt\"");
getch();
}

/*这个程序没有运行,如果有问题请见谅.*/
----------------解决方案--------------------------------------------------------
  相关解决方案