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
~470 People Reached
About Me

hi,i am amit pursuing my b.tech from b.c.roy eng. college durgapur.i love old musics.i like to write blogs on wordpress.

Favorite Tags
c x 2
Member Avatar for amitshree
Member Avatar for WaltP
0
302
Member Avatar for amitshree

[CODE]#include<stdio.h> #include<conio.h> struct node{ int data; struct node *next; }; struct node *creat_list(struct node *start); void display(struct node *start); struct node *addatbeg(struct node *start,int data); struct node *addatend(struct node *start,int data); int main(void) { struct node *start=NULL; int choice,data; while(1) { printf("1.creat linklist\n"); printf("2.display\n"); printf("3.add at beg\n"); printf("4.adda t end\n"); …

Member Avatar for amitshree
0
168