Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

linked list help

Status
Not open for further replies.

anatazi

Programmer
Jun 24, 2002
33
0
0
US
Hello,
How can I call a function that rturns a node?
Its declaration is ELE find().
I have
typedef struct Ele ELE;
typedef struct *Ele *ELE;

struct Ele{
char *adress;
char *name;
int id;
ELE *next.
};

Thanks you,
 
Can you explain more clearly what you actually want to know?
 
Nevermind my call for help, Got it!
Thanks ;)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top