What are the rules about using an underscore in a c++ identifier?
How is static data member similar to a global variable?
Write a program to concatenate two strings.
What is the difference between #import and #include?
What is called array?
Explain queue. How it can be implemented?
What are associate containers?
What are the vectors in c++?
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
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 searching?
Write is a binary search tree? Write an algo and tell complexity?
What are the different types of polymorphism in c++?