fork download
  1. #include <stdio.h>
  2.  
  3. const char *code = "\xb8\xbe\xba\xfe\xca\xc3";
  4.  
  5. typedef int (*pFunc)();
  6.  
  7. int main() {
  8. printf("%x\n", ((pFunc)code)());
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
cafebabe