How can I call to operator new[] with GDB?
For example I want to allocate 0x40 bytes and print the address : operator new[](0x44u));
How can I do that using GDB ?
When I tried p (void*)operator new[](0x40) I got No symbol "operator" in current context.
p (void*)operator new[](0x40)not work?No symbol "operator" in current context.