What should main() return in c and c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the cout in c++?
What is the difference between global variables and local variable
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
Explain the difference between abstract class and interface in c++?
What is the need of a destructor? Explain with the help of an example.
What is class invariant in c++?
What is a linked list in c++?
Is atoi safe?
What do you mean by volatile and mutable keywords used in c++?
What is the sequence of destruction of local objects?
What are c++ manipulators?
What is the difference between equal to (==) and assignment operator (=)?