C++ 파일입출력
#include #include #include #include using namespace std; void main() { char fileName[20]; string fileText; ifstream FInput; //ifstream 객체 생성 ofstream FOutput; //ofstream 객체 생성 cout > fileName; //ofstream start FOutput.open(fileName); //파일이 없을경우 만들고 연다. cout > fileText; FOutput
청강컴정/C++
2009. 4. 30. 16:14