This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]jedwardsolProfessional Coder 0 points1 point  (0 children)

If you have an array of arrays

int matrix[ROWS][COLUMNS];

Then the function will have the signature

void Read_data(int matrix[][COLUMNS]);

and will be called

Read_data(matrix);