Define a conversion constructor?
No Answer is Posted For this Question
Be the First to Post Answer
what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??
What is dev c++ used for?
What do you mean by overhead in c++?
Is there a datatype string in c++?How is the memory allocation?
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.
What do you mean by static variables?
What is null pointer and void pointer?
Differentiate between a copy constructor and an overloaded assignment operator.
What are the c++ access specifiers?
What are c++ templates used for?
Explain the difference between class and struct in c++?
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;