ifstream 으로 선언하여, 한 줄씩 파일 읽기 예제
#include <fstream> using namespace std; void readFile(const char *path) { ifstream file(path); if (!file.is_open()) return; const size_t BUFFER_SIZE = 128; char buffer[BUFFER_SIZE]; while(!file.eof()){ file.getline(buffer, BUFFER_SIZE); } file.close(); }