Define a conversion constructor?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??

4 Answers  


What is dev c++ used for?

0 Answers  


What do you mean by overhead in c++?

0 Answers  


Is there a datatype string in c++?How is the memory allocation?

3 Answers  


Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.

4 Answers   Microsoft,






What do you mean by static variables?

0 Answers  


What is null pointer and void pointer?

0 Answers  


Differentiate between a copy constructor and an overloaded assignment operator.

0 Answers  


What are the c++ access specifiers?

1 Answers  


What are c++ templates used for?

0 Answers  


Explain the difference between class and struct in c++?

0 Answers  


What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;

4 Answers   Lehman Brothers,


Categories