In the program I'm coding right now, I will have to move some arrays from one function to another, and also to the main. Especially, in one part of the program a function has to send two arrays to a different function.
How can this be done? Can I use a pass by reference? Has it to be made with pointers (I still don't know how pointers work btw :P).