What is functions syntax in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Define a nested class.
What are the effects after calling the delete this operator ?
What is the difference between a declaration and a definition?
How did c++ start?
Can we use this pointer inside static member function?
In which memory a class gets stored(in heap /in stack)? And why??
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; }
write program for palindrome
81 Answers Amazon, Aricent, CSC, GE, HCL, Infosys, Syntel, Temenos, Wipro,
give me an example for testing a program showing the test path .show how the test is important and complex.
Is it possible for a member function to delete the pointer, named this?
Does there exist any other function which can be used to convert an integer or a float to a string?
Explain one method to process an entire string as one unit?