Recently for school we had to use specific functions that had a set function and arguments that they wanted for us to use.
However, in every example that I could find prior to the assignment the structure remained the same. The assignment required void GetIntArray(int *outputArray, int * count)
as one of the functions.
I was really confused by the difference between *outputArray
and * count
; do they work the same or does the space between *
and count
make a difference?