EmbLogic's Blog

Author Archives: pardeepkakash

#include #include #include struct node { int roll; char name[20]; struct node *next; }; void creat_node(struct node * temp) { struct node *start; temp->next=malloc(sizeof(struct node)); temp=temp->next; printf(“\nentrer the roll”); scanf(“%d”,&temp->roll); printf(“enter the name \n”); scanf(“%s”,temp->name); temp->next=NULL; } void display_node(struct node … Continue reading

Posted in Uncategorized | Leave a comment