what are the iterator and generic algorithms.
No Answer is Posted For this Question
Be the First to Post Answer
What is an adaptor class in c++?
What is an adjust field format flag?
What do you mean by public protected and private in c++?
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
Are there interfaces in c++?
5. Can inline functions have a recursion?
what are function pointers?
Which programming language should I learn first?
Explain the virtual inheritance in c++.
What are proxy objects?
What is class syntax c++?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that