What is c++ best used for?
No Answer is Posted For this Question
Be the First to Post Answer
Give example of a pure virtual function in c++?
What is the difference between public, private, protected inheritance?
In what situations do you have to use initialization list rather than assignment in constructors?
What is the basic difference between C and C++?
What would happen on forgetting [], while deallocating an array through new?
What is data binding in c++?
How does work in c++?
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; }
What is const in c++?
Is it possible to use a new for the reallocation of pointers ?
write program for palindrome
81 Answers Amazon, Aricent, CSC, GE, HCL, Infosys, Syntel, Temenos, Wipro,
what is the basic concept of c++(object oriented programing)