如何验证《c primer plus》上的程序清单 13.2
代码如下:
#include "stdafx.h"
#include<stdlib.h>
#include<string.h>
#define LEN 40
int _tmain(int argc, char* argv[])
{
FILE *in, *out;
int ch;
char name[LEN];
int count = 0;
if (argc < 2)
{
fprintf(stderr, "Usage: %s filenamen", argv[0]);
exit(1);
}
if ((in = fopen(argv[1], "r")) == NULL)
{
fprintf(stderr, "I couldn't open the file "%s"n",
argv[1]);
exit(2);
}
strcpy(name, argv[1]);
strcat(name, ".red");
if ((out = fopen(name, "w")) == NULL)
{
fprintf(stderr, "Can't create output file.n");
exit(3);
}
while ((ch = getc(in)) != EOF)
if (count++ % 3 == 0)
putc(ch, out);
if (fclose(in) != 0 || fclose(out) != 0)
fprintf(stderr, "Error in closing filesn");
return 0;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这算自问自答吗?
终于搞明白了。在reducto.exe存在的那个文件夹里新建一个txt文件,在里面添加So even Eddy came oven ready.然后重命名为eddy(不要有后缀名),最后打开命令行窗口转至该目录输入reducto eddy即可。