How to implement is-a and has-a class relationships?
No Answer is Posted For this Question
Be the First to Post Answer
What does ios :: app do in c++?
Is c++ free?
Differentiate between an inspector and a mutator ?
What are the various storage classes in C++?
What is the use of this pointer in c++?
If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];
Is recursion allowed in inline functions?
What type of question are asked in GE code writing test based on c++ data structures and pointers?
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
Write a program and call it sortcheck.cpp which receives 10 numbers from input and checks whether these numbers are in ascending order or not. You are not allowed to use arrays. You should not define more than three variables
What is #include iostream h in c++?
How can you quickly find the number of elements stored in a dynamic array?