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
1 Posted Topic
#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 …
The End.