相关代码 |
|
#include #include using namespace std; int main() { int n[5] = {1, 2, 3, 4, 5}; register int i; ofstream ofile("test.bin", ios::out | ios::binary); //以二进制方式打开文件 if(!ofile) { cout ofile.write((char *) &n, sizeof n); //向文件写数据块 ofile.close(); for(i=0; i ifstream ifile("test.bin", ios::in | ios::binary); //以二进制方式打开文件 if(!ifile) { cout ifile.read((char *) &n, sizeof n); for(i=0; i ifile.close(); return 0; }
相关资源 |
|