Which bit wise operator is suitable for checking whether a particular bit is on or off?
What is the arrow operator in c++?
What are smart pointers?
What is a Default constructor?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
List the features of oops in c++?
implement stack using stack.h headerfile functions
1 Answers Exilant, GMG, Subex, University,
Is sorted c++?
What is else if syntax?
Is c++ a pure oop language?
What do you mean by storage classes?
How can we access protected and private members of a class?
What is the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,