Skip to main content

C++ 벡터 참조에 의한 호출

예제 코드

까먹지 맙시다.

void fun(vector <int> &a) {
....
}

int main() {
vector <int> b;
fun(b);
}

참고 자료