calc(mesh, prob_data, &cells_fd[crr], species, cr);
I'm looking at a function call in a code, and I just wanted to verify if I am looking this correct. In the above call, I am interested in the argument cells_fd[crr]. Does the "&" in front of the argument mean that cells_fd[crr] is being passed into the function calc, and whatever calc does, will be stored back inside cells_fd[crr]?