createfile.cpp
来自「一个开源的网络开发库ACE」· C++ 代码 · 共 35 行
CPP
35 行
// createfile.cpp,v 4.4 1998/08/01 00:57:17 gonzo Exp
#include <stdio.h>
#include <string.h>
#include "ace/ACE.h"
ACE_RCSID(Dump_Restore, createfile, "createfile.cpp,v 4.4 1998/08/01 00:57:17 gonzo Exp")
int
main (int argc, char **argv)
{
FILE *infile, *outfile;
char buf[BUFSIZ];
if ((infile = fopen (argv[1], "r")) == NULL)
return -1;
if ((outfile = fopen (argv[2], "w")) == NULL)
return -1;
int count = 0;
while (::fgets (buf, BUFSIZ, infile))
{
buf[::strlen(buf) - 1] = '\0';
fputs (buf, outfile);
if (count % 2 == 0)
fputs (" ", outfile);
else
fputs ("\n", outfile);
count++;
}
fclose (outfile);
fclose (infile);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?