标题:main函数
取消只看楼主
gausszzz
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2008-11-9
结帖率:100%
 问题点数:0 回复次数:1 
main函数
编译连接成功,运行有误。
#include<stdio.h>

int main(int argc,char *argv[])
{
    int i,*in,*out;
    FILE *infile,*outfile;
    
    if((infile=fopen(argv[1],"r"))==NULL)
        printf("Can not open the file 'argv[1]' ");
    if((outfile=fopen(argv[2],"w"))==NULL)
        printf("Can not open the file 'argv[2]' ");
    fscanf(infile,in);
    for(i=0;in[i]!='\0';i++)
        out[i]=in[i];
    fprintf(outfile,out);
    
}

源文件.JPG (153.78 KB)
搜索更多相关主题的帖子: 函数 main 
2008-12-13 17:24
gausszzz
Rank: 1
等 级:新手上路
帖 子:16
专家分:0
注 册:2008-11-9
得分:0 
我在dos运行也失败了,有如下提示:
Can not open the file argv[1]

http://www./site/register.do?message=d1962876808b4b27a3e80ccb7cba3206
2008-12-13 18:02



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




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

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