I\'m trying to use pass by reference in C so that the function can modify the values of the parameters passed to it. This is the function signature:
int loc
You can't do this in c. c doesn't have reference, you can use pointer instead.