Difference between a homogeneous and a heterogeneous container
No Answer is Posted For this Question
Be the First to Post Answer
Explain what happens when a pointer is deleted twice?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
What is the difference between const and constexpr?
Write about an iterator class?
What is stoi in c++?
Why is standard template library used?
When there is a global variable and local variable with the same name, how will you access the global variable?
Floating point representation and output seems to be compiler dependent?
When one must use recursion function? Mention what happens when recursion functions are declared inline?
Is it possible for the objects to read and write themselves?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
Why main function is special in c++?