What is a .h file c++?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a program such that it will delete itself after exectution?
What is problem with Runtime type identification?
What is stack unwinding?
Explain mutable storage class specifier.
What is rvalue?
class Alpha { public: char data[10000]; Alpha(); ~Alpha(); }; class Beta { public: Beta() { n = 0; } void FillData(Alpha a); private: int n; }; How do you make the above sample code more efficient? a) If possible, make the constructor for Beta private to reduce the overhead of public constructors. b) Change the return type in FillData to int to negate the implicit return conversion from "int" to "void". c) Make the destructor for Alpha virtual. d) Make the constructor for Alpha virtual. e) Pass a const reference to Alpha in FillData
What is the use of bit fields in structure declaration?
which is the easy way to divide any integer by 2?
We use library functions in the program, in what form they are provided to the program?
What are activex and ole?
What is virtual base class uses?
When you overload member functions, in what ways must they differ?