What is a map in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Can a built-in function be recursive?

0 Answers  


Explain queue. How it can be implemented?

0 Answers  


class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;

1 Answers   Quark,


why the size of an empty class is 1

4 Answers  


Why do we need constructors in c++?

0 Answers  






class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.

5 Answers   Quark,


Is c++ a low level language?

0 Answers  


How do I get good at c++ programming?

0 Answers  


What is enum c++?

0 Answers  


What is a volatile variable in c++?

0 Answers  


Explain the pure virtual functions?

0 Answers  


List out function which we can call without using object

1 Answers  


Categories