whats my error
#include<stdio.h> /*Printing odd numbers in the first and last column of a matrix*/ int add_matrix();//function declaration int main() { int row, col; printf("Enter the number of rows: "); scanf("%d", &row); printf("Enter the number of columns: "); scanf("%d", &col); int matrix[row][col]; for (int i=0; i<row; i++) { for (int j=0; j<col; j++) { printf("Matrix[%d][%d]: ", i, j); scanf("%d", &matrix[i][j]); } } add_matrix(matrix, row, col); } int add_matrix(int a[][],int row,int col) { int sum=0; for (int i=0; i<row; i++) { if((a[i][1] % 2) != 0) { sum += a[i][1]; } } }