How a pointer differs from a reference?
Describe the advantage of an external iterator.
What is static function and static class?
how to connect with oracle 9i with server in socket program in c/c++
What is binary search in c++?
What is vector pair in c++?
What is meant by a delegate?
Write a program using display() function which takes two arguments.
What is the difference between static link library and dynamic link library?
How const functions will be treated by compiler?
i want the NIC programmer-B model papaer pattren, iwant the all model papers?
Write about the local class and mention its use?
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.