SyntaxFix
Write A Post
Hire A Developer
Questions
Always use new in C++. If you need a block of untyped memory, you can use operator new directly:
void *p = operator new(size); ... operator delete(p);