I have the following code as a sample of what I am trying to do. I don\'t know the actual size of the array, until I enter the function. However, I don\'t
You should use a pointer, so when you enter the method the array is still not declared.
You can use malloc to set the correct size. Look at this article: arrays and malloc