实用的程序员编程工具

源代码在线查看: seek_tel.cpp

软件大小: 678 K
上传用户: muye0422
关键词: 程序员 编程工具
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				#include 
				#include 
				
				void main(int argc, char *argv[])
				 {
				   if(argc!=4)
				    {
				      cout 				      exit(1);
				    }
				   fstream out(argv[1], ios::in | ios::out | ios::binary);
				   if(!out)
				    {
				      cout 				      exit(1);
				    }
				   out.seekp(atoi(argv[2]), ios::beg);
				   out.put(*argv[3]);
				   cout 				   out.close();
				 }
							

相关资源