What are stacks?


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

Post New Answer

More C++ General Interview Questions

What is lambda expression c++?

0 Answers  


Are there any new intrinsic (built-in) data types?

1 Answers  


Copy Linked List using recursive function?

2 Answers   Persistent,


Where can I run c++ program?

0 Answers  


Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }

2 Answers   CDAC, Wipro,






Is there anything you can do in C++ that you cannot do in C?

1 Answers  


Why are arrays usually processed with for loop?

0 Answers  


What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random

0 Answers  


What is the difference between cin.read() and cin.getline()?

0 Answers  


If a base class is an adt, and it has three pure virtual functions, how many of these functions must be overridden in its derived classes?

0 Answers  


What is meant by forward referencing and when should it be used?

0 Answers  


Explain the difference between static and dynamic binding of functions?

0 Answers  


Categories