Hi,<div><br></div><div>I am creating an array, but i don't know how big I need it to be at the time it is instantiated.  Once I figure out what I want that size to be, how do I assign it?  The current solution i have is this:</div>
<div><br>
</div><div>int array[];</div><div>int size;</div><div>// do stuff</div><div>{ // new block keeps dummy from clogging namespace</div><div>int dummy[size];</div><div>dummy @=> array;</div><div>}</div><div><br></div><div>
Is there a better way?</div><div><br></div><div>Regards,</div><div>George</div>