Programming/C++

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

KingSSSSS 2017. 12. 20. 10:01
int& test (int & pi)
{
        return pi ;

}