Explain stack & heap objects?


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

Post New Answer

More C++ General Interview Questions

They will ask u question about single linked list?. Write Code for to insert delete node.

2 Answers   Persistent,


What is #include cstdlib in c++?

0 Answers  


What return value must conversion operators have in their declaration?

0 Answers  


What is a static member?

0 Answers  


Why do we use iterators?

0 Answers  






How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?

0 Answers  


What is the full name of logo?

0 Answers  


Why struct is used in c++?

0 Answers  


What is the difference between a declaration and a definition?

0 Answers  


How can you quickly find the number of elements stored in a static array?

0 Answers  


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


What is stream and its types in c++?

0 Answers  


Categories