Explain the difference between 'operator new' and the 'new'
operator?
Answer / richa
The term "operator new" is used incase when u are
overloading the global "new" operator.We can overload ne
operator just as any other operators i.e +,-,*,=etc.
The term "new operator" is used in case of dynamic
allocation of memory.When a variable is allocated memory
dynamically the new operator is used.
Eg:
int *p=new int;
//here p is pointer to integer.So in order to allocate
memory for it we have used the new operator.
| Is This Answer Correct ? | 15 Yes | 0 No |
what are the iterator and generic algorithms.
What is DlgProc?
Explain the properties and principles of oop.
Is nan a c++?
Can you explain the term "resource acquisition is initialization?"
What are the three forms of cin.get() and what are their differences?
What is your strongest programming language (Java, ASP, C, C++, VB, HTML,C#, etc.)?
24 Answers Infosys, Microsoft, TCS,
Difference between linked list and array?
How does com provide language transparency?
Write a C++ program which will compute the volume of a sphere or a cylinder after prompting the user to type the first character for the shape name.
0 Answers An-Najah National University,
How do you differentiate between overloading the prefix and postfix increments?
What happens when the extern "c" char func (char*,waste) executes?