Okay okay, I was quite naive about dynamic arrays in C. I noticed that after a little looking around on stackoverflow.com

Seems like I must either master pointers or stick with a static array.

The whole point of making the array dynamic was that I'm fearing to run out of stack memory further down the road. Is it sufficient to declare the array as a pointer and make it rather big to prevent this?

Last edited by sdh309795gaas; 12/20/17 17:01.