Explain queue. How it can be implemented?


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

Post New Answer

More C++ General Interview Questions

What is the difference between a baller and a reference in C++?

0 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


What is enum c++?

0 Answers  


Is structure can be inherited?

5 Answers   HP, ST Micro,


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,






what is data encapsulation in C++?

0 Answers  


What is virtual destructors? Why they are used?

1 Answers  


What does ctime() do?

0 Answers  


What parameter does the constructor to an ofstream object take?

0 Answers  


What is the v-ptr?

0 Answers  


What are the benefits of c++?

0 Answers  


Which function cannot be overloaded c++?

0 Answers  


Categories