What is a list c++?
No Answer is Posted For this Question
Be the First to Post Answer
How would you obtain segment and offset addresses from a far address of a memory location?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
Describe the main characteristics of static functions?
Mention the ways in which parameterized can be invoked.
an operation between an integer and real always yeilds a) integer result b) real result c) float result
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; }
Is arr and &arr are same expression for an array?
What are the various compound assignment operators in c++?
Why cstdlib is used in c++?
how is returning structurs from functions?Show an eg?
What is virtual constructor paradigm?
what is a reference variable in C++?