code\\CL\\Desktop\\t

#include <stdio.h>
int main()
{
FILE* pf = fopen(&quot;test.txt&quot;, &quot;w&quot;);//以写的方式打开文件
//. 表示当前路径
//.. 表示上一级路径
//FILE* pf = fopen(&quot;D:\\code\\CL\\Desktop\\test.txt&quot;, &quot;w&quot;);//绝对路径
//FILE* pf = fopen(&quot;.\\..\\test.txt&quot;, &quot;w&quot;);//相对路径(当前路径的上一级路径)

if (pf == NULL)
{
perror(&quot;fopen&quot;);
return 1;
}
else
{
printf(&quot;文件打开成功\n&quot;);
}
//写文件
//...
//关闭文件
fclo www.laipuhuo.com se(pf);
pf = NULL;

return 0;
}
全部评论

相关推荐

点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务