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.73K
~206 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for SoulMazer

#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 …

Member Avatar for saravmittar
0
206

The End.