What is an associative container in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Why is c++ still used?
write a program that takes 5 digit no and calculate 2 power that no and print it.
Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
Can c++ do everything c can?
What is buffer and example?
Explain function overloading
what is C++ objects?
What is the purpose of extern storage specifier?
What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.
Declare a class vehicle and make it an abstract data type.
What is one dimensional array in 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\"; } };