fork download
  1. #include <stdio.h>
  2.  
  3. unsigned char program[] = {0x89, 0xf8, 0x01, 0xf0, 0xc3};
  4.  
  5. int main(void) {
  6. int (*add)(int, int) = (void*)program;
  7. printf("%d\n", add(40, 2));
  8. return 0;
  9. }
  10.  
Runtime error #stdin #stdout 0.04s 5280KB
stdin
Standard input is empty
stdout
Standard output is empty