What does new in c++ do?


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

Post New Answer

More C++ General Interview Questions

Does improper inheritance have a potential to wreck a project?

0 Answers  


Explain rtti.

0 Answers  


What are the various operations performed on stack?

0 Answers  


Comment on c++ standard exceptions?

0 Answers  


If a function doesn’t return a value, how do you declare the function?

0 Answers  






Where can I run c++ program?

0 Answers  


template<class T, class X> class Obj { T my_t; X my_x; public: Obj(T t, X x) : my_t(t), my_x(x) { } }; Referring to the sample code above, which one of the following is a valid conversion operator for the type T? a) T operator T () { return my_t; } b) T operator(T) const { return my_t; } c) operator(T) { return my_t; } d) T operator T (const Obj &obj) { return obj.my_t; } e) operator T () const { return my_t; }

1 Answers   Quark,


What is class syntax c++?

0 Answers  


What are advantages of using friend classes?

0 Answers  


Why ctype h is used in c++?

0 Answers  


How can you force instantiation of a template?

1 Answers   ABC, Amazon,


Explain all the C++ concepts using examples.

0 Answers   InterGraph,


Categories