fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5. printf("========================================\n");
  6. printf(" KERNEL PANIC - EMOTIONAL FAILURE\n");
  7. printf("========================================\n\n");
  8.  
  9. printf("ERROR CODE: 0x0000HEART\n");
  10. printf("PROCESS: new_year.exe\n");
  11. printf("THREAD: lonely_thread\n\n");
  12.  
  13. printf(">> Initializing memory scan...\n");
  14. printf(">> Found corrupted file: past_memories.dll\n");
  15. printf(">> Attempting recovery...\n");
  16. printf(">> Recovery FAILED.\n\n");
  17.  
  18. printf("FATAL ERROR:\n");
  19. printf(" Emotional buffer overflow\n");
  20. printf(" Cannot delete old feelings\n");
  21. printf(" Heart.exe has stopped responding\n\n");
  22.  
  23. printf("SYSTEM HALTED.\n");
  24. printf("Press any key to pretend you're okay...\n");
  25.  
  26. getchar();
  27. return 1;
  28. }
Success #stdin #stdout 0.04s 25480KB
stdin
Standard input is empty
stdout
#include <stdio.h>
#include <stdlib.h>

int main() {
    printf("========================================\n");
    printf("   KERNEL PANIC - EMOTIONAL FAILURE\n");
    printf("========================================\n\n");

    printf("ERROR CODE: 0x0000HEART\n");
    printf("PROCESS: new_year.exe\n");
    printf("THREAD: lonely_thread\n\n");

    printf(">> Initializing memory scan...\n");
    printf(">> Found corrupted file: past_memories.dll\n");
    printf(">> Attempting recovery...\n");
    printf(">> Recovery FAILED.\n\n");

    printf("FATAL ERROR:\n");
    printf("    Emotional buffer overflow\n");
    printf("    Cannot delete old feelings\n");
    printf("    Heart.exe has stopped responding\n\n");

    printf("SYSTEM HALTED.\n");
    printf("Press any key to pretend you're okay...\n");

    getchar();
    return 1;
}