What is the real purpose of class – to export data?


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

Post New Answer

More C++ General Interview Questions

How do you establish a has-a relationship?

0 Answers  


What is friend class in c++ with example?

0 Answers  


Explain the problem with overriding functions

0 Answers  


What is the equivalent of Pascal's Real a) unsigned int b) float c) char

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 do you mean by funtion prototype?

0 Answers  


What is c++ programming language?

0 Answers  


Explain function overloading

0 Answers  


What is the Standard Template Library?

1 Answers  


Which programming language is best?

0 Answers  


What is the syntax for a for loop?

0 Answers  


Differentiate between an external iterator and an internal iterator? What is the advantage of an external iterator.

0 Answers  


Categories