Explain pass by value and pass by reference.
No Answer is Posted For this Question
Be the First to Post Answer
What is the full form of stl in c++?
What is pointer with example?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
What is a node class?
What does ctime() do?
Why do we use using namespace std in c++?
What is a literal in c++?
Discuss the effects occur, after an exception thrown by a member function is unspecified by an exception specification?
Which of the following operator cannot be overloaded?
Describe the main characteristics of static functions?
Is it possible to provide special behavior for one instance of a template but not for other instances?
an operation between an integer and real always yeilds a) integer result b) real result c) float result