can any one tell me in the below post
struct node
{
int info;
struct node *next;
};
typedef struct node NODE; 1. why typedef used & whats d
benifet of doing this
NODE *start;
void createmptylist(NODE **start) 2. why Node **start used instead we
can also use Node *start & get same re.
{
*start=(NODE *)NULL;
}
why typede
--
You received this message because you are subscribed to the Google Groups
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/algogeeks?hl=en.