What is the difference between a reference and a pointer?
No Answer is Posted For this Question
Be the First to Post Answer
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
What is the use of data hiding?
What is the use of structure in c++?
How should a contructor handle a failure?
What is meant by const_cast?
What is name hiding in c++?
Why c++ is better than c language?
Write a program which employs Recursion
wap to accept 10 numbers & display the number of odd and even numbers??
What are the syntactic rules to be avoid ambiguity in multiple inheritance?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
How to avoid changing constant values?