how to send matrix to function in c code example
Example 1: Passing a matrix in a function C
void ins (size_t rows, size_t columns, int matrix[rows][columns]);
Example 2: Passing a matrix in a function C
void ins (int (*matrix)[100], int row, int column);