在vs2010 读写代码我下面的代码 getch(); exit(1); 这个地方报错是为什么啊!
答案:1 悬赏:30 手机版
解决时间 2021-01-21 15:55
- 提问者网友:我的未来我做主
- 2021-01-21 11:41
在vs2010 读写代码我下面的代码 getch(); exit(1); 这个地方报错是为什么啊!
最佳答案
- 五星知识达人网友:迟山
- 2021-01-21 12:19
#include "stdafx.h"
#include
#include "stdlib.h"
void main()
{
FILE *fp;
char ch;
if ((fp=fopen("e10_1.c","rt"))==NULL)
{
printf("Cannot open file strike any key exit!");
exit(1);
}
while(ch!=EOF)
{
ch=fgetc(fp);
putchar(ch);
}
fclose(fp);
return ;
}追问为什么我读不到e10_1.c里面的东西呢。e10_1.c放在哪!
#include
#include "stdlib.h"
void main()
{
FILE *fp;
char ch;
if ((fp=fopen("e10_1.c","rt"))==NULL)
{
printf("Cannot open file strike any key exit!");
exit(1);
}
while(ch!=EOF)
{
ch=fgetc(fp);
putchar(ch);
}
fclose(fp);
return ;
}追问为什么我读不到e10_1.c里面的东西呢。e10_1.c放在哪!
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯