How to pass the param like char * as a reference?
My function uses malloc()
void set(char *buf)
{
buf = malloc(4*sizeof(char));
buf = "test";
}
char *str;
set(str);
puts(str);
|
How to pass the param like char * as a reference? My function uses malloc()
|
|||
|
|
|
You pass the address of the pointer:
|
|||||||||||||||
|
|
You have to pass it as a pointer to the pointer:
Call it like this:
Note that I have changed the I also use You should also remember to |
|||||||||
|
|
C does not support pass by reference. But you can pass a pointer to your pointer, and set that:
|
|||||||
|
|
You to pass a pointer to a pointer,
Note that:
does not copy Remember to
|
||||
|
|
C is pass-by-value. There is no pass-by-reference. |
|||||||||||
|
|
C cannot not pass function arguments by reference, C always passes them by value. From Kernighan & Ritchie:
To modify a pointer to |
|||||||||||
|