I'm trying to make a program which
- Takes the user input (let's say all of it is
int
) - Store it in an array without a starting size (i.e. not ->
array[5];
); and then - Use the information stored in the array for whatever sinister purposes.
I'm asking for help so that I can learn how to do this on my own if needed.
- How do I make a dynamic array without a set size?
- How can I use/access/reach the elements in the above array?
Reading just didn't explain enough for me.
I know it's a very noobish question, and yes, I am a noob, but to change that I need some help.