Explain the static member function.
No Answer is Posted For this Question
Be the First to Post Answer
Explain the auto storage classes in c++.
what is the use of templates?
What is null and void pointer?
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 a local variable?
What is near, far and huge pointers? How many bytes are occupied by them?
How is c++ different from java?
What size is allocated to the union variable?
What is name mangling?
What information can an exception contain?
How can you find the nodes with repetetive data in a linked list?
Should I learn c or c++ first?