InterviewSolution
Saved Bookmarks
| 1. |
How does compiler convert “::operator new” implicitly?(a) ::operator new( sizeof( type ) )(b) ::operator new( sizeof( ) )(c) new operator :: type sizeof( type )(d) new sizeof( type ) operatorThe question was asked in an international level competition.The question is from New Operator topic in division Memory Allocation & Scope of Variable of Object Oriented Programming |
|
Answer» The CORRECT answer is (a) ::operator new( sizeof( type ) ) |
|