Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

can i know the source code for reversing a linked list with
out using a temporary variable?

Answer Posted / fazil

void Func( struct Node* List )
{
if( List && List->Next )
{
Func( List->Next );

List->Next->Next = List;
}
}

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain the meaning of keyword 'extern' in a function declaration.

1204


What is c basic?

1221


What are the usage of pointer in c?

1242


Are the outer parentheses in return statements really optional?

1158


What are examples of structures?

1185


What are data types in c language?

1106


What is d'n in c?

1174


Where we use clrscr in c?

1185


How will you delete a node in DLL?

1338


What are the functions to open and close the file in c language?

1085


Write a code to remove duplicates in a string.

1084


Is r written in c?

1189


What is the benefit of using an enum rather than a #define constant?

1318


Explain what is a program flowchart and explain how does it help in writing a program?

1142


What is the use of sizeof () in c?

1099