Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
11/08/07 15:37
Read: times


 
#146774 - C : pointers of function und pointers of pointers
Hi
To first I want to say Hello to everyone here.
I tought since a few day about pointers of function. I know that in C is pointers important fur speed. I have seen that I can write simply a function and use it next time. I agree that for variable are pointers important but why therefor use pointers to function?

I tought the same of pointers of pointers. why and when must we use pointers of pointers ?
here ist an exemple :
struct node
{
int data;
struct node *link;
}
typedef struct node *pNode;

pNode insert ( node **p, int **value)
{
...
...
...
}
I understand the pointer`s mecanism, but these to points I mentioned are not clar in mine head.
Best regards!
Cyrille

List of 5 messages in thread
TopicAuthorDate
C : pointers of function und pointers of pointers            01/01/70 00:00      
   just the opposite with a '51            01/01/70 00:00      
      this thread must be in general chat.            01/01/70 00:00      
         So give a link!            01/01/70 00:00      
         8051-Specific Reply            01/01/70 00:00      

Back to Subject List