what is the order of initialization for data?
Answer Posted / g. maheshwari
The member and base classes are initialized in the order they appear in the class definition, not the order they appear in initialization list.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
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 maximum number of concurrent threads that the InnoDB plug-in can create
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
Why do we need function?
Define a conversion constructor?
What is time h in c++?
What does obj stand for?
What is a class template?
Which software is used to run c++ program?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
Describe exception handling concept with an example?
Is c++ built on c?
Write is a binary search tree? Write an algo and tell complexity?
What is ios flag in c++?
What do nonglobal variables default to a) auto b) register c) static
What are virtual functions in c++?