DQH 发表于 2020-5-1 10:15:05

如何打开txt类型的文档啊

#include<stdio.h>
#include<stdlib.h>

int main(int argc, char *argv[])
{
        int ch;
        FILE *fp;
        long count = 0;
       
        if(argc != 2){
                printf("Usage: %s filename\n", argv);
                exit(EXIT_FAILURE);
        }
        if((fp = fopen(argv, "r")) == NULL){
                printf("Can't open %s\n", argv);
                exit(EXIT_FAILURE);
        }
        while((ch = getc(fp)) != EOF){
                putc(ch, stdout);
                count++;
        }
        fclose(fp);
        printf("File %s has %lu characters\n", argv, count);
       
        return 0;
}

我刚学习这一部分,我照着书上写的,也创建了一个txt的文本文档,里面写了“helloworld”,并把代码和文本文档都保存在了自己创建的文件夹里面。程序运行后显示
Usage: C:\Users\Administrator.PC-201804182227\Desktop\DEV项目\项目2.exe filename这是咋回事,应该如何正确打开这个文档啊?

weiter 发表于 2020-5-1 10:47:11

你不用编译器的??
看一下小甲鱼老师的教程,教程里面使用命令行的开的

weiter 发表于 2020-5-1 10:48:53

如果用了专门的c/c++编译器会自动生成exe文件,直接点开运行(前提是要在编译器里面点击编译)

weiter 发表于 2020-5-1 10:52:11

小甲鱼的教程(用的dev—c++)

https://www.bilibili.com/video/BV17s411N78s?p=2

liuzhengyuan 发表于 2020-5-1 11:47:35

weiter 发表于 2020-5-1 10:52
小甲鱼的教程(用的dev—c++)

https://www.bilibili.com/video/BV17s411N78s?p=2

{:10_275:}

weiter 发表于 2020-5-1 11:50:47

liuzhengyuan 发表于 2020-5-1 11:47


你不来抢最佳……

liuzhengyuan 发表于 2020-5-1 11:53:19

weiter 发表于 2020-5-1 11:50
你不来抢最佳……

不会。。。(我的水平有限)

weiter 发表于 2020-5-1 11:54:43

liuzhengyuan 发表于 2020-5-1 11:53
不会。。。(我的水平有限)

你……没学C?

weiter 发表于 2020-5-1 11:55:26

liuzhengyuan 发表于 2020-5-1 11:53
不会。。。(我的水平有限)

我只是下载过编译器,写过hello world,水平更有限(或者说……无下限){:10_284:}

liuzhengyuan 发表于 2020-5-1 11:55:43

weiter 发表于 2020-5-1 11:54
你……没学C?

我当然学!!!
https://fishc.com.cn/forum.php?mod=collection&action=view&ctid=1666&fromop=my

weiter 发表于 2020-5-1 11:56:51

liuzhengyuan 发表于 2020-5-1 11:55
我当然学!!!
https://fishc.com.cn/forum.php?mod=collection&action=view&ctid=1666&fromop=my

emmm……好吧{:10_245:}

cbcrack 发表于 2020-7-19 22:07:26

页: [1]
查看完整版本: 如何打开txt类型的文档啊