标签:span col http 分享图片 inf IV int info .com
1 //用输出运算符"<<"写入文件中 2 #include<fstream.h> 3 int main(){ 4 ofstream ofs("Data.dat"); 5 char str[3][20]={"abc\n","def\n","ghi\n"}; 6 for(int i=0;i<3;i++){ 7 ofs<<str[i]; 8 } 9 ofs.close(); 10 return 0; 11 }
Data.dat文件的内容是
1 abc 2 def 3 ghi
标签:span col http 分享图片 inf IV int info .com
原文地址:https://www.cnblogs.com/Tobi/p/9251650.html