Im making a program for C computer class which deals with algebra. I need a way to pass Arrays to different functions for things like Addition, Vector multiplication etc. Can anyone show me the proper syntax? The following are my prototype and function header (I think its called header, it goes at the top of my program).

Code:
int addition = (int matrix1, int matrix2); 
int addition (matrix1, matrix2);
Thank you for...