What is linked list in c++?



What is linked list in c++?..

Answer / Ashok Kumar Swarup

A C++ linked list is a data structure that consists of nodes connected by pointers. Each node contains a piece of data and a pointer to the next node, allowing for dynamic memory allocation and efficient insertion, deletion, and traversal.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Is it legal in c++ to overload operator++ so that it decrements a value in your class?

1 Answers  


Where can I run c++ program?

1 Answers  


what do you mean by volatile variable?

1 Answers  


Is c++ an oop?

1 Answers  


Is there a sort function in c++?

1 Answers  


What do you mean by abstraction in C++?

1 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


What is cin clear () in c++?

1 Answers  


List out function which we can call without using object

1 Answers  


What's the order in which the local objects are destructed?

1 Answers  


Difference between pointer to constant vs. Pointer constant

1 Answers  


Which function cannot be overloaded c++?

1 Answers  


Categories