What is the difference between operator new and the new
operator?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / guest
operator new is just like malloc and
new is the conventinal new in C++
| Is This Answer Correct ? | 3 Yes | 4 No |
Answer / man
operator new is nothing
And new operator is used to allocate memory on the heap
| Is This Answer Correct ? | 0 Yes | 6 No |
Are there interfaces in c++?
Is java a c++?
What is the full form of c++?
When the design recommends static functions?
Explain the volatile and mutable keywords.
What is c++ array?
Eplain extern keyword?
What is a template in c++?
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
What is the copy-and-swap idiom?
How long it will take to learn c++?
In which header file does one find isalpha() a) conio.h b) stdio.h c) ctype.h