What does std mean in c++?
No Answer is Posted For this Question
Be the First to Post Answer
what is the size of this class class size { public: char data1; double d; int data2; char data3; double data4; short data5; }; please explain the padding for these double variables.
What are the differences between a struct and a class in C++?
What and all can a compiler provides by default?
why we cant create array of refrences
How the programmer of a class should decide whether to declare member function or a friend function?
What is virtual table?
What is pure virtual function? Or what is abstract class?
What is std namespace 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 does namespace mean in c++?
What is the rule of three?
How is c++ used in the real world?