Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.67K
~401 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for phoenixlsk

class xll { public: int data; unsigned long link; }; class xlist { xll *head,*tail; xlist(){head = NULL;tail = NULL} void insert(int); }; void xlist :: insert (int ele) { xll *node = (xll*) malloc (sizeof(xll)); node->data = ele; xll *temp = head,*prev = NULL; while(temp != NULL) { next …

Member Avatar for manojthesingham
0
401

The End.