What are the benefits of pointers?
No Answer is Posted For this Question
Be the First to Post Answer
What are the two types of polymorphism?
How do you sort a sort function in c++ to sort in descending order?
Describe about storage allocation and scope of global, extern, static, local and register variables?
Is java as fast as c++?
Implement a 2 dimensional array by one dimentional array
What do the header files usually contains?
What are the operators in c++?
How do you print a string on the printer?
What and all can a compiler provides by default?
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.
How important is c++?
Why do we use using namespace std in c++?