What is a dangling pointer in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Is map ordered c++?
What is difference between array and vector in c++?
What is a modifier in c++?
What parameter does the constructor to an ofstream object take?
What is data type in c++?
In inline " expression passed as argument are evalauated once " while in macro "in some cases expression passed as argument are evaluated more than once " --> i am not getting it plz help to make me understand....
0 Answers College School Exams Tests, CS,
What are c++ files?
What is atoi in c++?
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
List the advantages of inheritance.
What is meant by entry controlled loop?
0 Answers Agilent, ZS Associates,
What is the need of a destructor? Explain with the help of an example.