Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~336 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for sparsh610

here is a code for reversing link list recursively. #include<stdio.h> #include<conio.h> #include<stdlib.h> typedef struct node{ int x; struct node *next; } node; node *head1; node *reverser(node *head) // this is recursive function { node *curr,*temp; curr=head; if(curr->next==NULL){ head1=curr; return curr;} head=reverser(curr->next); head->next=curr; curr->next=NULL; return curr; } int main() { int …

Member Avatar for sethlahaul
0
175
Member Avatar for paramv

Hello everyone,I need some good practise problems in java programming so that i can apply concepts in solving the problems.So any help would be much appreciated.Please refer me to any link or suggest me some book for the same and also I am new to this website so forgive if …

Member Avatar for paramv
0
161

The End.