structure definition for linklist.

#define SUCCESS 1
#define FAILURE 0

typedef struct node
{
char name[20]; /*data*/
struct node *next;
}node;

typedef struct linkedlist
{
node *base; /*keeps address of first node*/
int count;
}linkedlist;


No comments:

Post a Comment

kiss on google ads if you are anonymous because your ip is trackable.thank you.

......from.admin