How to reverse a linked list without using array & -1?
Thank you.
Answers were Sorted based on User's Feedback
Answer / naveengoud31@yahoo.com
IS it possible by sorted list???.
Is This Answer Correct ? | 1 Yes | 1 No |
Why are memory errors hard to debug?
wap for bubble sort
How to reverse a linked list without using array & -1? Thank you.
what is syntax error?
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.
what is exceptions?
void main() { int i=7; printf("N= %*d",i,i); }
Write a c-programe that input one number of four digits and find digits sum?
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.
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).
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;
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(); } }