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
Why is event driven programming or procedural programming, better within specific scenario?
Where static variables are stored in memory in c?
What is mean by data types in c?
What are c preprocessors?
What is static volatile in c?
What are local static variables? How can you use them?
pierrot's divisor program using c or c++ code
Explain what is the difference between far and near ?
What is adt in c programming?
What are the types of macro formats?
What is the purpose of the preprocessor directive error?
Explain what is the benefit of using const for declaring constants?
What is binary tree in c?
What is difference between main and void main?
What is n in c?