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 is function prototyping?
Shall we use 'free' to free memory assigned by new, What are the further consequences??
List out function which we can call without using object
What is the use of ‘using’ declaration?
Give a very good method to count the number of ones in a "n" (e.g. 32) bit number.
Explain the differences between private, public and protected and give examples.
What is a dynamic binding in c++?
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
What is a manipulative person?
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
What are the various arithmetic operators in c++?
When we use Abstract Class and when we use Interface?where we will implement in real time?