sorry if I ask a question that has been done many times before, but i have found no solution.
I have this typedef struct
typedef struct
{
int matrix[row][col];
}Position;
And i create a variable
Position park[weeks];
then i call it in a subroutine
void foo(struct Position *park[weeks]...)
and then
park[s].matrix[i][j]=car[k].id;
and i have the "request for etc etc" error, in this line above. What am I doing wrong? Sorry for my english.