index
:
undefined-samples
master
undefined-samples
minimal C programs that exhibit undefined behavior
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
modifying-a-string-literal.c
blob: bebabbf1019ac503c825b09743141756de7ce29e (
plain
)
1
2
3
4
5
6
7
8
#include <stdio.h> int main(void) { char *s = "foo"; s[0] = 'b'; puts(s); }