I have declared a struct, and I try to pass an array of those structs (as well as a double array of doubles, and an integer) into a function. I get an \"array type has incom
The compiler needs to know the size of the second dimension in your two dimensional array. For example:
void print_graph(g_node graph_node[], double weight[][5], int nodes);