fork download
  1. int main(void) {
  2. void* a;
  3. int* b=a;
  4. int(*c)()=a;
  5. puts("test call");
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
test call