1 Star 2 Fork 0

AI/ShiYanLou

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
12-1file_open_putc_close.c 911 Bytes
一键复制 编辑 原始数据 按行查看 历史
EwenWan 提交于 2017-11-18 23:05 . C_pointer
#include<stdio.h>
#include<stdlib.h> // stdlib 头文件即 standard library 标准库头文件 使用 exit(0)
int main()
{
FILE * fp;//文件类型的指针
char ch,filename[10];//字符 和字符数组
printf("Please enter the file name:");
scanf("%s",filename);//文件名
if((fp=fopen(filename,"w"))==NULL) // 以write写入方式 打开输出文件并使 fp 指向此文件
{
printf("Unable to open this file\n"); // 如果打开出错,就输出“打不开”的信息
exit(0); // 终止程序 #include<stdlib.h>
}
ch=getchar(); // 用来接收输入文件名时 最后输入的回车符
printf("Please enter a string in the disk(Ends with a #):");
ch=getchar(); // 接收从键盘输入的第一个字符
while(ch!='#') // 当输入 # 时结束循环
{
fputc(ch,fp);//写入一个字符
putchar(ch);
ch=getchar();
}
fclose(fp);//关闭文件
// putchar(10);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/awesomeproject/ShiYanLou.git
git@gitee.com:awesomeproject/ShiYanLou.git
awesomeproject
ShiYanLou
ShiYanLou
master

搜索帮助