What is c++ runtime?


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

Post New Answer

More C++ General Interview Questions

What are the five basic elements of a c++ program?

0 Answers  


You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()

0 Answers  


What are the syntactic rules to be avoid ambiguity in multiple inheritance?

0 Answers  


What is else if syntax?

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,






Is c better than c++?

0 Answers  


What does it mean to declare a member function as static?

0 Answers  


Differentiate between a deep copy and a shallow copy?

1 Answers  


What is an adaptor class or wrapper class in c++?

0 Answers  


How to avoid changing constant values?

2 Answers   Symphony,


What is the main purpose of c++?

0 Answers  


What are manipulators used for?

0 Answers  


Categories