Answer Posted / nimish singh
A conversion constructor declared with the explicit keyword. The compiler does not use an explicit constructor to implement an implied conversion of types. It's purpose is reserved explicitly for construction.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Should the member functions which are made public in the base class be hidden?
What is ofstream c++?
What is the difference between a reference and a pointer?
What is the difference between strcpy() and strncpy()?
What are the basic data types used in c++?
Explain the operation of overloading of an assignment operator.
What is data hiding c++?
What do you mean by inheritance in c++?
What is the size of a vector?
What is java and c++?
Which software is best for programming?
What is insertion sorting?
how can i access a direct (absolute, not the offset) memory
address?
here is what i tried:
wrote a program that ask's for an address from the user,
creates a FAR pointer to that adress and shows it. then the
user can increment/decrement the value in that address by
pressing p(inc+) and m(dec-).
NOW, i compiled that program and opened it twice (in 2
different windows) and gave twice the same address to it.
now look what happen - if i change the value in
one "window" of the program, it DOES NOT change in the
other! even if they point to the same address in the memory!
here is the code snippet:
//------------------------------------------------------
#include
Who created c++?
How is static data member similar to a global variable?