What sorting algorithm does c++ use?
No Answer is Posted For this Question
Be the First to Post Answer
Why is main an int?
What is "mutable" keyword?
What is the fastest c++ compiler?
what is static function
What is c++ prototype?
Describe linked list using C++ with an example.
Why do C++ compilers need name mangling?
Which one of the following describes characteristics of "protected" inheritance? a) The base class has access only to the public or protected members of the derived class. b) The derived class has non-public, inheritable, access to all but the private members of the base class. c) The derived class has access to all members of the base class. d) The private members of the base class are visible within the derived class. e) Public members of the derived class are privately accessible from the base class.
Why do we use structure in c++?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
What are the different types of variables in C++?