P is Placeholder, A is Actual value
Parameter is the placeholder. Argument is the actual value that gets passed in.
int add(int x, int y) {
return x + y;
}
C++
복사
위 함수 정의에서 x와 y는 Parameter(주로 '매개변수', '인자' 등으로 번역됨)이다.
int result = add(123, 456);
C++
복사
위 함수 호출에서 123과 456은 Argument(주로 '인수'로 번역됨)이다.