// fmtstr.c // demonstrate a format-string bug #include int main() { char *s = "%d -- bad!\n"; printf(s); return 0; }