fork download
  1. #define SIZE 100
  2. struct Item{
  3. int key;
  4. int val;
  5. };
  6.  
  7. struct Item * fizz(struct Item *table){
  8. return table;
  9. }
  10.  
  11. int main(){
  12. struct Item table[SIZE];
  13. table = fizz(table);
  14. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c: In function 'main':
prog.c:13:9: error: assignment to expression with array type
   table = fizz(table);
         ^
stdout
Standard output is empty