#include <stdio.h>

int main()
{
   printf( "Null string %s\n", (char*)NULL );
   printf( "%s", (char*)NULL );
   return 0;
}
