Passing by reference in C
If C does not support passing a variable by reference, why does this work?
#include <stdio.h>
void f(int *j) {
(*j)++;
}
int main() {
int i = 20;
int *p = &i;
f(p);
printf("i = %d\n", i);
return 0;
}
Output:
$ gcc -std=c99 test.c
$ a.exe
i = 21
Solution 1:
Because you're passing the value of the pointer to the method and then dereferencing it to get the integer that is pointed to.
Solution 2:
That is not pass-by-reference, that is pass-by-value as others stated.
The C language is pass-by-value without exception. Passing a pointer as a parameter does not mean pass-by-reference.
The rule is the following:
A function is not able to change the actual parameters value.
Let's try to see the differences between scalar and pointer parameters of a function.
Scalar variables
This short program shows pass-by-value using a scalar variable. param
is called the formal parameter and variable
at function invocation is called actual parameter. Note incrementing param
in the function does not change variable
.
#include <stdio.h>
void function(int param) {
printf("I've received value %d\n", param);
param++;
}
int main(void) {
int variable = 111;
function(variable);
printf("variable %d\m", variable);
return 0;
}
The result is
I've received value 111
variable=111
Illusion of pass-by-reference
We change the piece of code slightly. param
is a pointer now.
#include <stdio.h>
void function2(int *param) {
printf("I've received value %d\n", *param);
(*param)++;
}
int main(void) {
int variable = 111;
function2(&variable);
printf("variable %d\n", variable);
return 0;
}
The result is
I've received value 111
variable=112
That makes you believe that the parameter was passed by reference. It was not. It was passed by value, the param value being an address. The int type value was incremented, and that is the side effect that make us think that it was a pass-by-reference function call.
Pointers - passed-by-value
How can we show/prove that fact? Well, maybe we can try the first example of Scalar variables, but instead of scalar we use addresses (pointers). Let's see if that can help.
#include <stdio.h>
void function2(int *param) {
printf("param's address %d\n", param);
param = NULL;
}
int main(void) {
int variable = 111;
int *ptr = &variable;
function2(ptr);
printf("ptr's address %d\n", ptr);
return 0;
}
The result will be that the two addresses are equal (don't worry about the exact value).
Example result:
param's address -1846583468
ptr's address -1846583468
In my opinion this proves clearly that pointers are passed-by-value. Otherwise ptr
would be NULL
after function invocation.