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 Rhinorhino 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
Joined
Jun 24, 2002
Messages
33
Location
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.

Similar threads

Part and Inventory Search

Sponsor

Back
Top