Why do we use constructor?
No Answer is Posted For this Question
Be the First to Post Answer
What is operator overloading in c++ example?
What are put and get pointers?
Write a program which uses functions like strcmp(), strcpy()? etc
What is a "RTTI"?
What is the use of endl?
Define whitespace in C++.
Differentiate between a deep copy and a shallow copy?
Write a program to find the Fibonacci series recursively.
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
what kind of projects are suitable for c and c++
What is the use of 'using' declaration in c++?
When to use Multiple Inheritance?