标题:请教高手
取消只看楼主
hehailin
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2005-11-1
 问题点数:0 回复次数:0 
请教高手

#include<fstream.h>
#include<iostream.h>
#include<stdio.h>
void main(int arvc,char *argv[])
{ int sum,totalsum;
FILE *fp;
char ch;
if((fp=fopen(*++argv,"r"))==NULL)
{
printf("cannot open file\n");
return;
}
while(!feof(fp))
{
ch=fgetc(fp);
printf("\n");
while(ch!='\n'||ch!=EOF)
{
putchar(ch);
if(ch==' ')
{sum++;totalsum++;}
ch=fgetc(fp);
}
printf("\n");
printf("%d",sum);

        }
printf("%d",totalsum);
fclose(fp);
}
请问高手们:这个程序我编译通不过.望指教.请问把它编译成可执行文件后怎么去运行.步骤怎样
搜索更多相关主题的帖子: include return cannot 
2005-11-01 23:46



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-32259-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.084480 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved