In what situations do you have to use initialization list rather than assignment in constructors?
No Answer is Posted For this Question
Be the First to Post Answer
What is a namespace in c++?
What is a down cast?
explain the reference variable in c++?
What is a "Copy Constructor"?
What is static 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;
When can you tell that a memory leak will occur?
sizeof - is it a function or operator?
How can you say that a template is better than a base class?
difference between the c++ and c languages
What is the use of c++ programming language in real life?
Why do we use structure in c++?