what does the following statement mean?
int (*a)[4]
No Answer is Posted For this Question
Be the First to Post Answer
How much do c++ programmers make?
What is rtti 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
Give example of a pure virtual function in c++?
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;
What are advantages and disadvantages of Design patterns?
what is the use of templates?
What happens if an exception is throws from an, object's constructor and object's destructor?
Please explain the reference variable in c++?
If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
What are the static members and static member functions?
What is a protocol class?