What is the difference between operator new and the new
operator?
Answer Posted / vrushali
Operator new is a function name used for operator overloading and new operator is used for allocating memory
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Explain the difference between new() and malloc() in c++?
What is the latest version on c++?
What is the role of static keyword for a class member variable?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
What are the five basic elements of a c++ program?
What are the advantages of using const reference arguments in a function?
Can you Mention some Application of C/C++?
What is the use of string in c++?
Evaluate the following expression as C++ would do :8 * 9 + 2 * 5 a) 82 b) 79 c) 370 d) list
What is object in c++ wikipedia?
What are the three forms of cin.get() and what are their differences?
Explain "const" reference arguments in function?
How should runtime errors be handled in c++?
What is split a string in c++?
Difference between pointer to constant and constant pointer to a constant. Give example.