Is multimap sorted c++?
No Answer is Posted For this Question
Be the First to Post Answer
class Alpha { public: char data[10000]; Alpha(); ~Alpha(); }; class Beta { public: Beta() { n = 0; } void FillData(Alpha a); private: int n; }; How do you make the above sample code more efficient? a) If possible, make the constructor for Beta private to reduce the overhead of public constructors. b) Change the return type in FillData to int to negate the implicit return conversion from "int" to "void". c) Make the destructor for Alpha virtual. d) Make the constructor for Alpha virtual. e) Pass a const reference to Alpha in FillData
What is a memory leak c++?
what is an array
What is the purpose of templates in c++?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What is double in c++?
Is there a c++ certification?
Differentiate between a template class and class template in c++?
What is the use of 'this' pointer?
How many ways are there to initialize an int with a constant?
simple c++ program for "abcde123ba" convert "ab321edcba" with out using string
what is pre-processor in C++?