I want to use new and delete operators in keil ARM. I got the error "use of undeclared identifier 'new'."
an example of code is :
Z = new double[J2];
I tried to use
#include <new>
which is located in ARMCC folder in keil. but more errors came up about namespace and ...
Could you please help me. Thanks.