What is the main purpose of overloading operators?
No Answer is Posted For this Question
Be the First to Post Answer
What is the full form of stl in c++?
What is searching? Explain linear and binary search.
Explain the difference between c & c++?
What is a c++ map?
Explain selection sorting. Also write an example.
Write an algorithm that determines whether or not an almost complete binary tree is a heap.
What are pointers used for c++?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
Which software is best for programming?
What are friend functions?