Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What are proxy objects in c++?

0 Answers  


Is there any difference between int [] a and int a [] in c++?

0 Answers  


What character terminates all character array strings a) b) . c) END

0 Answers  


Is oops and c++ same?

0 Answers  


Why c++ is so important?

0 Answers  


write a programme to get a character and thier ASCII value

0 Answers  


What flag means?

0 Answers  


How can you quickly find the number of elements stored in a a) static array b) dynamic array ?

5 Answers   Lucent,


When do we run a shell in the unix system? How will you tell which shell you are running?

0 Answers  


int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,


Comment on assignment operator in c++.

0 Answers  


Why do we use using namespace std in c++?

0 Answers  


Categories