What is the difference between std::vector and std::list
Answer / nashiinformaticssolutions
o Vector: Uses contiguous memory and supports random access.
o List: Uses linked nodes and is better for frequent insertions/deletions.
| Is This Answer Correct ? | 0 Yes | 0 No |
What c++ library is string in?
Can circle be called an ellipse?
What are the 3 levels of programming languages?
What data encapsulation is in c++?
What are the different data types present in C++?
Write about the stack unwinding?
Can you write a function similar to printf()?
What is virtual destructor ans explain its use?
Explain the differences between private, public and protected and give examples.
what is the C++
How a new operator differs from the operator new?
Function can be overloaded based on the parameter which is a value or a reference. Explain if the statement is true.