Deathwing
<Bronze Donator>
Arrays are defined at compile time and live in the stack(when in scope), redefining their size at run time IS possible but dangerous and generally not recommended. This is exactly what things like vectors are for. Generally, if you have to use an array for that purpose, you make it as big as you think you're going to need it.How do I take that count variable and use it to define how large my array would be? name[count] or something to that concept