void func(const int &ref) 

{

...

}

이거랑


void func(int ref)

{

...

}

이거랑 뭐가 다름??

그냥 받는거랑 참조형으로 받아서 const 쓰는거랑 무슨 차이?