gcc-2.95.3 Linux下最常用的C编译器

源代码在线查看: tvector.cc

软件大小: 13197 K
上传用户: ccdn2615
关键词: Linux gcc 95 C编译器
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 				#include 				#include 								main ()				{				  cout 				  char x[50];				  fill (x, x+50, '/');				  fill (x+1, x+49, '*');				  copy (x, x+50, ostream_iterator(cout));								  cout 								  vector cvec;				  cvec.insert (cvec.begin(), 50, '/');				  fill (cvec.begin()+1, cvec.end()-1, '-');				  copy (cvec.begin(), cvec.end(), ostream_iterator(cout));				  cout 				}							

相关资源