I have an issue passing a matrix to a function in C. There is the function I want to create:
void ins (int *matrix, int row, int column);
b
it would also possible to leave the first dimension empty, the same as (*matrix):
void ins (int matrix[][100], int row, int column);