06/08/10 수업내용

DEVELOP/C++ 2006. 8. 10. 15:28

using namespace std;
//friend로 선언하면 error

using std::cout;
using std::endl;
//friend로 선언해도 괜찮음

AND