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.73K
1 Posted Topic
#include<stdafx.h> #include<stdio.h> #include<stdlib.h> #include<iostream> struct node { //char _char; int number; struct node *next; }; void insertion(struct node *list,int num); int search(struct node *list,int num); void display(struct node *list); void delete_node(struct node *list,int num); int main() { int num=0; int input=1; int retval=0; /********************************************/ struct node *list = NULL; //list=(struct …
The End.
saravmittar