Are vectors passed by reference c++?
No Answer is Posted For this Question
Be the First to Post Answer
How can you say that a template is better than a base class?
What is the difference between strcpy() and strncpy()?
Is c++ a good beginners programming language?
How do you define/declare constants in c++?
Can non-public members of another instance of the class be retrieved by the method of the same class?
How can I learn c++ easily?
When is a template better solution than a base class??
What are iterators in c++?
Is main a class in c++?
Why did you leave your last job?
Describe exception handling concept with an example?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.