fork download
  1. #include <stdio.h>
  2. #include <windows.h>
  3.  
  4. char code[] = "\xEB\x12"
  5. "\x58"
  6. "\x6A\x05"
  7. "\x50"
  8. "\xB8\x41\x2C\x6D\x75"
  9. "\xFF\xD0"
  10. "\x6A\x00"
  11. "\xE8\x0E\x00\x00\x00"
  12. "\xE8\xE9\xFF\xFF\xFF"
  13. "\x63\x61\x6C\x63\x2E\x65\x78\x65";
  14.  
  15.  
  16.  
  17.  
  18. int main(int argc, char *argv[])
  19. {
  20. ((void(*)(void))code)();
  21.  
  22. return EXIT_SUCCESS;
  23. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:2:21: fatal error: windows.h: No such file or directory
compilation terminated.
stdout
Standard output is empty