Which software is used for c++ programming?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between class and function?
what is the C++
What are the advantages of prototyping?
Mention the purpose of istream class?
What is polymorphism & list its types in c++?
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
What is a list c++?
What is the default access level?
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 pointer -to-members in C++? Give their syntax?
What is a constructor and how is it called?