在vc6.0中用c语言怎么向一个文件中写入汉字?我是初学者求教!

2024-11-05 23:30:41
推荐回答(3个)
回答1:

#include
#include
void main()
{ char str[256]; //也可以写char str[256]={"中文字符串\n"};那么就可以省略后面strcpy一句了
FILE *fp;
if ( fp=fopen("data.txt","w+") )
{ strcpy(str,"中文字符串\n");
fputs(str,fp);
fclose(fp);
}
}

回答2:

microsoft visual c++ v6.0 简体中文版

http://www.xdowns.com/soft/38/121/2006/soft_14069.html

回答3:

open函数 打开一个文件
wite函数 写
close函数 关闭文件