[C] Call by Value VS Call by Reference
·
C, C++
Call by Value 와 Call by Reference 의 차이에 대해 이야기합니다. 아래 하나의 예제를 보겠습니다. #include void call_by_value(int test) { test = test + 10; printf("call by value address %p\n", &test); } int call_by_value_return(int test) { test = test + 10; printf("call by value address %p\n", &test); return test; } void call_by_reference(int *test) { printf("call by reference %p\n", test); *test = *test+1; } int main() { i..