The standard says that passing a NULL pointer as argument to a printf with %s specifier is undefined behavior1 (i.e. anything can happen), so both behaviors are licit.
In the first case, the standard library (in particular, the scanf code) is doing you a favor by printing (null).
In the second case, instead, the optimizer understands that your printf can be replaced by a puts (which is more efficient) without any change to the "observable behavior" of the program, and so it replaces it. But, puts does not happen to contain the NULL-checking code of the scanf, and thus you get a segmentation fault.
C99, §7.19.6.1, ¶8:
the argument shall be a pointer to the initial element of an array of character type.
¶9:
If any argument is not the correct type for the corresponding conversion specification, the behavior is undefined.
You fall in this last case, because NULL is not "a pointer to the initial element of an array of character type.
gccdoes various such optimizations. See section 2.3 and 3.1 in particular of ciselant.de/projects/gcc_printf/gcc_printf.html – FatalError Apr 10 '12 at 21:17gccbug report for more discussion on why this isn't considered a bug: gcc.gnu.org/bugzilla/show_bug.cgi?id=25609 – shf301 Apr 10 '12 at 21:19