Do vectors start at 0?
No Answer is Posted For this Question
Be the First to Post Answer
Explain storage qualifiers in c++.
How do I open binary files?
How does the copy constructor differ from the assignment operator (=)?
How do you declare A pointer to a function which receives nothing and returns nothing
How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever
17 Answers Datavance, Quark, VEL, Wipro,
How to allocate memory dynamically for a reference?
Is c++ a low level language?
What are the 2 main types of data structures?
What is pure virtual function?
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\"; } };
Is it possible for a member function to delete the pointer, named this?
sizeof- is it functioning statically or dynamically?