Is c++ map a hash table?
No Answer is Posted For this Question
Be the First to Post Answer
Are vectors passed by reference c++?
What are proxy objects?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
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\"; } };
Which is the best c++ compiler for beginners?
Can we use this pointer in a class specific, operator-overloading function for new operator?
Write a function which takes a character array as input and reverses it in place.
2 Answers Lehman Brothers, Vision Infotech,
Describe linkages and types of linkages?
give me some class & objects examples?
What is implicit conversion/coercion in c++?
What are the techniques you use for debugging?
How does list r; differs from list r();?