fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char *heart = NULL;
  5.  
  6. printf("Loading memories...\n");
  7. printf("Accessing emotional address...\n");
  8.  
  9. // พยายามเข้าถึงความรู้สึกที่ไม่ควรถูกแตะ
  10. heart[0] = '💔'; // BOOM
  11.  
  12. printf("Everything is fine...\n");
  13. return 0;
  14. }
Success #stdin #stdout 0.04s 25516KB
stdin
Standard input is empty
stdout
#include <stdio.h>

int main() {
    char *heart = NULL;

    printf("Loading memories...\n");
    printf("Accessing emotional address...\n");

    // พยายามเข้าถึงความรู้สึกที่ไม่ควรถูกแตะ
    heart[0] = '💔';   // BOOM

    printf("Everything is fine...\n");
    return 0;
}