What is a conversion constructor?
Answer / munendra kumar
A constructor that accepts one argument of a different type.
The compiler uses this idiom as one way to infer conversion rules for your class. A constructor with more than one argument and with default argument values can be interpreted by the compiler as a conversion constructor when the compiler is looking for an object of your constructor's type and sees an object of the type of the constructor's first argument.
| Is This Answer Correct ? | 0 Yes | 0 No |
Why c++ does not have finally?
What are the three forms of cin.get() and what are their differences?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
What is the v-ptr?
What is the function to call to turn an ascii string into a long?
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
Explain what are single and multiple inheritances in c++?
What is volatile and pragma? When they are used?
Define private, protected and public access control.
When you overload member functions, in what ways must they differ?
Explain the difference between c & c++?
Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes