Do I need delete or delete [] here...

J

Jerry Coffin

holeshot60 said:
int* integers = new int[10];

delete integers;

What you should probably use is:

std::vector<int> integers(10);

with no delete needed. Roughly 95% of the time that people use new,
it's neither necessary nor desirable.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,156
Messages
2,570,878
Members
47,408
Latest member
AlenaRay88

Latest Threads

Top