modernc.org/ccgo/v3@v3.16.14/lib/testdata/bug/esc_e.c (about) 1 #include <stdio.h> 2 3 int main() { 4 char *s = "abc\edef"; 5 int c; 6 while (c = *s++) { 7 printf("%d\n", c); 8 } 9 }