#include<stdio.h>
//生成一个文件
//int main()
//{
// FILE *fp=NULL;
//
// fp=fopen("G:/test.txt","w+");
// fprintf(fp,"this is first line.\n");
// fputs("this is second line.\n",fp);
// fputs("你好呀",fp);
// fclose(fp);
//}
#include<stdio.h>
//生成一个文件
//int main()
//{
// FILE *fp=NULL;
//
// fp=fopen("G:/test.txt","w+");
// fprintf(fp,"this is first line.\n");
// fputs("this is second line.\n",fp);
// fputs("你好呀",fp);
// fclose(fp);
//}