- 论坛徽章:
- 0
|
如何编写类似cat功能的程序?
//vtype.cpp
#include <iostream>;
#include <fstream>;
using namespace std;
int main(int argc, char *argv[])
{
if(argc >; 1)
{
char * pszfilename = argv[1];
fstream fs(pszfilename, ios_base::in);
if(fs.fail())
{
//cerr<<"ERROR:Error opening argv[1]:No such file or directory!\n";
printf("ERROR:Error opening %s :No such file or directory!\n",argv[1]);
exit (0);
}
char ch;
while(fs.get(ch))
{
cout<<ch;
}
}
else
{
cout<<" lease input filename!"<<endl;
}
}
//编译成vtype.exe, 键入vtype + 文件名 |
|