What is the use of "new" operator?


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

Post New Answer

More C++ General Interview Questions

What is the latest c++ version?

0 Answers  


what is Member Functions in Classes?

0 Answers  


What is iterator c++?

0 Answers  


Describe private, protected and public – the differences and give examples.

0 Answers  


given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you

2 Answers  






Will the inline function be compiled as the inline function always? Justify.

1 Answers  


What is cout flush?

0 Answers  


How a new operator differs from the operator new?

0 Answers  


What are all predefined data types in c++?

0 Answers  


Is swift faster than c++?

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,


Differentiate between a template class and class template?

1 Answers  


Categories