Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

C++ How to create a dynamic array of integers using new Keyword ?

share|improve this question
You use a std::vector<int>. And a book. – GManNickG Oct 27 '10 at 4:32
-1 homework assignment – baash05 Oct 27 '10 at 4:47
how do you assign and access its data once it's initialized? – user1073395 Nov 30 '11 at 13:05

5 Answers

up vote 11 down vote accepted
int main()
{
  int size;

  std::cin >> size;

  int *array = new int[size];

  delete [] array;

  return 0;
}

Don't forget to delete every array you allocate with new.

share|improve this answer
1  
I won't -1, but if you can even possibly forget to delete, your code is wrong. – GManNickG Oct 27 '10 at 4:32

You might want to consider using the Standard Template Library . It's simple and easy to use, plus you don't have to worry about memory allocations.

http://www.cplusplus.com/reference/stl/vector/vector/

int size = 5;                    // declare the size of the vector
vector<int> myvector(size, 0);   // create a vector to hold "size" int's
                                 // all initialized to zero
myvector[0] = 1234;              // assign values like a c++ array
share|improve this answer
Ok, but answering the actual question is nice too. – Ed S. Oct 27 '10 at 4:13
1  
@Ed, the restriction in the question seems rather arbitrary. std::vector with the appropriate constructor works really well and should be pointed out as an alternative. Sometimes people ask the question poorly, and this might count as one of those cases - it's very brief and doesn't give any rationale for preferring new. – Mark Ransom Oct 27 '10 at 4:23
@Ed: There's no reason to use new[] instead of std::vector. – GManNickG Oct 27 '10 at 4:33
Gman.. On windows ce devices STL is huge.. You take a big hit for using it. Actually that would hold true for several embedded devices, where an extra meg on your app means your user gets hours less use between data dumps. – baash05 Oct 27 '10 at 4:52
Oh.. also.. I believe STL uses a combination of linked list and array to accomplish the vector. The memory limits of embedded devices would take a hit in that respect too. NOTE: There is never a reason to say never a reason :) There are two reasons in as many minutes :) – baash05 Oct 27 '10 at 4:55
show 9 more comments
int* array = new int[SIZE]
share|improve this answer
3  
semicolon at the end? – Dima Oct 27 '10 at 4:08
2  
You're probably missing the colon, or haven't replaced SIZE with an actual size. – Montdidier Oct 27 '10 at 4:08
1  
Love the snarky attitude considering you didn't even get the syntax right. – Ed S. Oct 27 '10 at 4:10
1  
Snarky attitude seems to have been edited away. – Ed S. Oct 27 '10 at 4:11
3  
Why should there be a semi-colon? It's not a complete statement. There might be more declarations. This, if included in a complete program, does what the OP asked. – Benjamin Lindley Oct 27 '10 at 4:29
show 5 more comments

It's all right here: http://www.cplusplus.com/doc/tutorial/dynamic/

share|improve this answer
I had to resist posting this: tinyurl.com/3256l6q – muntoo Oct 27 '10 at 4:11
cool ;) – Alok Save Oct 27 '10 at 5:00
int* array = new int[size];
share|improve this answer
Factually correct, but a bad practice. :/ – GManNickG Oct 27 '10 at 4:33
It just answers the question. – Ed S. Oct 27 '10 at 17:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.