본문 바로가기

Programming/C++

18. 반환형이 참조자 인 경우

int& test (int & pi)
{
        return pi ;

}