|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
我在些一个程序时,构建了一个一个文件,却不只到这个文件在哪里,求大神带带
#include<stdio.h>
#include<stdlib.h>
void main()
{FILE *fp;
char ch ,filename[20];
printf("please input the filename you want to write:");
scanf("%s",filename);
if(!(fp=fopen(filename,"wt++")))
{printf("cannot open the file");
exit(0);
}
printf("please input the sentence you want to write:");
ch=getchar();
ch=getchar();
while(ch!=EOF)
{fputc(ch,fp);
ch=getchar();
}
fclose(fp);
}
你新建项目的时候不是要选择路径嘛,就那个路径里。要是一个劲的下一步,那就在默认文件夹下
|
|