A node of linked list
10/09/98
17
B.Ramamurthy
typedef struct node
{
int Data;
node* Next;
}; // end struct
typedef node* PtrType;
PtrType P;
Previous slide
Next slide
Back to first slide
View graphic version