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

Why is event driven programming or procedural programming, better within specific scenario?

2362


Where static variables are stored in memory in c?

945


What is mean by data types in c?

963


What are c preprocessors?

1121


What is static volatile in c?

969


What are local static variables? How can you use them?

1079


pierrot's divisor program using c or c++ code

2165


Explain what is the difference between far and near ?

1046


What is adt in c programming?

1095


What are the types of macro formats?

1056


What is the purpose of the preprocessor directive error?

1194


Explain what is the benefit of using const for declaring constants?

966


What is binary tree in c?

1035


What is difference between main and void main?

1110


What is n in c?

969