What is an iterator?
No Answer is Posted For this Question
Be the First to Post Answer
Why would you make a destructor virtual?
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\"; } };
Why is c++ a mid-level programming language?
What are inline functions? What is the syntax for defining an inline function?
What are protected members in c++?
if i want cin 12345678910 and cout abcdefghij. so how can i create the program?. example : if i key in 8910 so the answer is ghij.
When is a template better solution than a base class??
Is oops and c++ same?
Explain data encapsulation?
Out of fgets() and gets() which function is safe to use and why?
How the compilers arranges the various sections in the executable image?
What is a .lib file in c++?