欢迎访问服务器技术网-www.fuwuqijishu.com

c语言把一个文件读出来写到另一个文件中

程序设计 fuwuqijishu 2年前 (2022-10-01) 11次浏览 0个评论 扫描二维码

关于/bv. “stdafx.h”#include”stdlib.h”intmain(intargc,char*argv[]){FILE*fP1;FILE*fp2;charch;if((fp1=fopen(“d:\\用户目录\\file1.txt”,”r”))==0){printf(“cannotopenthisfile\n”);exit(1);if((fp2=fopen(“d:\\用户目录\\file1.txt”,”w”))==0){printf(“cannotopenthisfile\n”);exit(1);while((ch=fgetc(fp1))!=EOF){fp2=(ch,fp2);}free(fp1);free(fp2);return0;}​问题是:\MSDev98\MyProjects\bv\bv.cpp(11):errorC2065:’fp1′:undeclaredidentifierE:\MSDev98\MyProjects\bv\bv.cpp(11):errorC2440:’=’:cannotconvertfrom’struct_iobuf*’to’int’Thisconversionrequiresareinterpret_cast,aC-stylecastorfunction-stylecastE:\MSDev98\MyProjects\bv\bv.cpp(21):fatalerrorC1903:unabletorecoverfrompreviouserror(s);stoppingcompilation执行cl.exe时出错.bv.exe-1error(s),0warning(s)求大神的问题

应该是没有找到FILE定义。
在文件开头加入
#include “stdio.h”

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2509.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900