#define SIZE 100 struct Item{ int key; int val; }; struct Item * fizz(struct Item *table){ return table; } int main(){ struct Item table[SIZE]; table = fizz(table); }
Standard input is empty
prog.c: In function 'main':
prog.c:13:9: error: assignment to expression with array type
table = fizz(table);
^
Standard output is empty