struct node
{
int data;
struct node *next;
};
What is difference between following two functions:
void traverse(struct node *q)
{ }
and
void traverse(struct node **q)
{ }
How can i call above functions from main program?
|
|
|
The first argument list passes a pointer to a
The second argument list passes a pointer to a pointer to a
As for calling the two versions of the function, from
Alternately, given a structure declared as
And then:
|
||||
|
|
Takes a pointer to a struct. You would could call it like this:
This function
Takes a pointer to a pointer to a struct. You could call it like this:
Passing a pointers is useful if you want to modify the original variable that you pass to the function, for example, if you had a function like this:
Then you could do this:
|
|||
|
|
Simply passes a pointer to the function.
Passes a pointer to a pointer, so you can change the original one. It's the C-equivalent of C++'s passing a pointer by reference. In C++, you can just do:
You'd call them as:
|
|||
|
|