What is #include cstdlib in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
How many types of comments are there in c++?
What language does google use?
Do you know what are the new features that iso/ansi c++ has added to original c++ specifications?
What is nested class in c++?
What's the order in which the objects in an array are destructed?
What is the purpose of ios::basefield in the following statement?
Explain virtual class and friend class.
diff between pointer and reference in c++?
Why do we need constructors in c++?
When to use “const” reference arguments in a function?
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.