如何打开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这是咋回事,应该如何正确打开这个文档啊?
你不用编译器的??
看一下小甲鱼老师的教程,教程里面使用命令行的开的 如果用了专门的c/c++编译器会自动生成exe文件,直接点开运行(前提是要在编译器里面点击编译) 小甲鱼的教程(用的dev—c++)
https://www.bilibili.com/video/BV17s411N78s?p=2 weiter 发表于 2020-5-1 10:52
小甲鱼的教程(用的dev—c++)
https://www.bilibili.com/video/BV17s411N78s?p=2
{:10_275:} liuzhengyuan 发表于 2020-5-1 11:47
你不来抢最佳…… weiter 发表于 2020-5-1 11:50
你不来抢最佳……
不会。。。(我的水平有限) liuzhengyuan 发表于 2020-5-1 11:53
不会。。。(我的水平有限)
你……没学C? liuzhengyuan 发表于 2020-5-1 11:53
不会。。。(我的水平有限)
我只是下载过编译器,写过hello world,水平更有限(或者说……无下限){:10_284:} weiter 发表于 2020-5-1 11:54
你……没学C?
我当然学!!!
https://fishc.com.cn/forum.php?mod=collection&action=view&ctid=1666&fromop=my liuzhengyuan 发表于 2020-5-1 11:55
我当然学!!!
https://fishc.com.cn/forum.php?mod=collection&action=view&ctid=1666&fromop=my
emmm……好吧{:10_245:}
页:
[1]