What do the keywords volatile and mean mutable?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of default constructor?
Is c++ a software?
What is the basic structure of c++ program?
What should main() return in c and c++?
Define the operators that can be used with a pointer.
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
what do you mean by volatile variable?
What are the c++ access specifiers?
What do you know about near, far and huge pointer?
How is objective c different from 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 class invariant?