Listing 1

   printf("The value is '%s' \n", (x == 0 ? "zero" :
                             (x == 1 ? "one" :
                             (x == 2 ? "two" :
                             "lots")));

/* End of File */