What are the various compound assignment operators in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Should you pass exceptions by value or by reference?
What is problem with Runtime type identification?
In C++ cout is: a) object b) class c) something else
11 Answers Infosys, Lehman Brothers,
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Which operator cannot be overloaded c++?
Why cout is used in c++?
What is a multiset c++?
What are arrays c++?
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\"; } };
What is the difference between while and do while loop?
What are the extraction and insertion operators in c++?
Why is c++ still popular?