fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main() {
  5. char day[] = "New Year";
  6. char emotion[] = "lonely";
  7. char memory[] = "old pain";
  8.  
  9. printf("System Date: %s\n", day);
  10.  
  11. if (strcmp(emotion, "lonely") == 0) {
  12. printf("ERROR: Emotional overflow detected\n");
  13. printf("Loading memory... %s\n", memory);
  14. printf("System message: Heart.exe has stopped working 💔\n");
  15. }
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
System Date: New Year
ERROR: Emotional overflow detected
Loading memory... old pain
System message: Heart.exe has stopped working 💔