How to reverse a linked list without using array & -1?
Thank you.

Answers were Sorted based on User's Feedback



How to reverse a linked list without using array & -1? Thank you...

Answer / naveengoud31@yahoo.com

IS it possible by sorted list???.

Is This Answer Correct ?    1 Yes 1 No

How to reverse a linked list without using array & -1? Thank you...

Answer / mahesh

NO ,

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More C C++ Errors Interview Questions

Why are memory errors hard to debug?

1 Answers  


wap for bubble sort

3 Answers  


How to reverse a linked list without using array & -1? Thank you.

2 Answers   Access, Satyam,


what is syntax error?

3 Answers  


Write a program to accept two strings of Odd lengths. Then take all odd characters from one string and even characters from the other and concatenate and produce a string.

1 Answers  


what is exceptions?

5 Answers   HCL, Wipro,


void main() { int i=7; printf("N= %*d",i,i); }

6 Answers   HCL,


Write a c-programe that input one number of four digits and find digits sum?

2 Answers  


I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.

1 Answers  


What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).

0 Answers  


when i use cout or cin call & then either << or >> .....it shows declaration syntax error...what should i do? cout<<"anything"; int a; cin>>a; return 0;

2 Answers  


class test { int a; public: test(int b):a(b){} void show(){ cout<<a; } }; void main() { test t1; test t2(5); t1.show(); t2.show(); } }

1 Answers  


Categories