What is searching?
No Answer is Posted For this Question
Be the First to Post Answer
What is the role of copy constructor in copying of thrown objects?
What is private inheritance?
Give 10 points of differences between C & C++.
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.
What are the three forms of cin.get() and what are their differences?
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
the maximum length of a character constant can be a) 2 b) 1 c) 8
What is #include iostream?
What is a character in c++?
why c++ is not called strictly d super set of c?
Why ctype h is used in c++?
Describe delete operator?