What is the most powerful coding language?


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

Post New Answer

More C++ General Interview Questions

What are pointer-to-members? Explain.

0 Answers   iNautix,


What is a memory leak c++?

0 Answers  


What is a multimap c++?

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,


Write any small program that will compile in "C" but not in "C++"?

4 Answers  


What is the full form of stl in c++?

0 Answers  


What is function overriding in c++?

0 Answers  


What is a static member?

0 Answers  


How is data hiding achieved in c++?

0 Answers  


What is the purpose of the noexcept keyword?

1 Answers  


Can I learn c++ in a week?

0 Answers  


In java a final class is a class that cannot be derived. How can you make a similar class in C++

1 Answers  


Categories