Explain the concept of dynamic allocation of memory?


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

Post New Answer

More C++ General Interview Questions

What are the uses of pointers?

0 Answers  


What is the function of I/O library in C++ ?

0 Answers   HCL,


How many namespaces are there in c++?

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,


Can you pass a vector to a function?

0 Answers  


What is encapsulation in c++ with example?

0 Answers  


How to access a variable of the structure?

0 Answers  


What is a c++ vector?

0 Answers  


How to declare a function pointer?

0 Answers  


Why should we use null or zero in a program?

0 Answers  


What is virtual function? Explain with an example

0 Answers  


What is the use of volatile keyword in c++? Give an example.

1 Answers  


Categories