第16周閱讀程式——4(2)
阿新 • • 發佈:2019-02-05
/* *Copyright (c) 2016,煙臺大學計算機學院 *All rights reserved. *檔名稱 : *作 者 : 劉雲 *完成日期 : 2016年6月15號 *版 本 號 : v6.0 * *問題描述 : 閱讀程式 *輸入描述 :無 *程式輸出 : */ #include<iostream> #include<fstream> using namespace std; const char * filename ="a.txt"; int main() { long pos; ofstream outfile; outfile.open("test.txt"); outfile.write("This is an apple",16); pos=outfile.tellp(); outfile.seekp(pos-7); outfile.write(" sam",4); outfile.close(); return 0; }