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.80K
~473 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for jai_steave

#include <stdio.h> #include <conio.h> struct linked_list { int info; struct linked_list *next; }; typedef struct linked_list node; /*prototypes*/ void create(node*); int pt(node*); void insertnode(node*); void append(node*); node* insertstart(node*); void removenode(node*); void removeend(node*); node* removestart(node*); main() { node *head; int c; clrscr(); head = (node*)malloc(sizeof(node)); create(head); c = pt(head); printf("\nNo. of …

Member Avatar for deceptikon
0
473

The End.