// Clause: 6.4.5 — if a program attempts to modify a string literal, the behavior is undefined.
#include <stdio.h>
int main(void){
    char *s = "hello";
    s[0] = 'H'; // UB
    puts(s);
    return 0;
}
