파일에서 한글자씩 읽기
#include <iostream> #include <fstream> using namespace std; int main() { ifstream fin("input.txt"); char c; while(true){ fin.get(c); if(fin.fail()) break; cout << c << " "; } }
파일에서 한줄씩 읽기
#include <iostream> #include <fstream> using namespace std; int main() { ifstream fin("input.txt"); string name; while(!fin.eof()){ getline(fin,name); cout << name << endl; } }