What is linked list in c++?


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

Post New Answer

More C++ General Interview Questions

What is the use of volatile variable?

0 Answers  


What is the size of pointer ? Also size of pointer in 64 bit pointer

4 Answers  


What is the difference between delegation and implemented-in-terms-of?

0 Answers  


When you overload member functions, in what ways must they differ?

0 Answers  


What are references in c++?

0 Answers  






What is the best c++ book for beginners?

0 Answers  


in C++ , the word plus plus who found this?

4 Answers  


Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?

0 Answers  


What is the difference between operator new and the new operator?

3 Answers   Amazon, TCS, Wipro,


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,


Define the process of handling in case of destructor failure?

0 Answers  


Is the declaration of a class its interface or its implementation?

0 Answers  


Categories