What is stack unwinding?
No Answer is Posted For this Question
Be the First to Post Answer
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 an html tag?
Does c++ have arraylist?
Is c the same as c++?
What is Destructor in C++?
Explain virtual class and friend class.
When should you use global variables?
What do you mean by translation unit?
What is the size of a vector?
Explain how to initialize a const data member.
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
What are function poinetrs? where are they used?