fork download
  1. #include <stdio.h>
  2.  
  3. char a[] = {0xeb, 0x13, 0x59, 0x31, 0xc4, 0xb0, 0x04, 0x31,
  4. 0xdb, 0x43, 0x31, 0xd2, 0xb2, 0x0f, 0xcd, 0x80,
  5. 0xb0, 0x01, 0x4b, 0xcd, 0x80, 0xe8, 0xe8, 0xff,
  6. 0xff, 0xff, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x2c,
  7. 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x63, 0x21, 0x0a,
  8. 0x0d };
  9.  
  10. int main(void)
  11. {
  12. char (*p) ();
  13. p = &a;
  14. printf("hello compilebot: %d\n", p());
  15. return 0;
  16. }
  17.  
Runtime error #stdin #stdout 0s 2048KB
stdin
Standard input is empty
stdout
Standard output is empty