함수내 지역변수의 활용 C++ #include class Test { public: int* point(); }; int main() { int* p; Test* t= new Test(); p=t->point(); std::cout 프로그래밍/cpp 2013.05.14