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;
Explain what are single and multiple inheritances in c++?
Can c++ be faster than c?
Can a function take variable length arguments, if yes, how?
What is isdigit c++?
What is new in c++?
Write about the members that a derived class can add?
Discussion on error handling of C++ .
What is rtti in c++?
I want explanation for this assignment: how to connect mysql database using c/c++,please explain this detailly?
How would you stop a class from class from being derived or inherited?The constructer should not be Private,as object instantiation should be allowed.
what is smart pointer & use of the smart pointer ???
Define the process of handling in case of destructor failure?