在C/C++ 讀寫檔案操作比較常見應該是利用FILE、ifstream、ofstream 在這篇筆記裡頭記錄 FILE、fstream 使用方法及操作 1#include <iostream>2#include <stdio.h>3#include <stdlib.h>4#include <fstream>56usingnamespacestd;789intmain()10{11/*12r : open for reading13rb : open for reading in binary mod...