#include <stdio.h>
main()
{
   char d;

   d = 'x';
   printf("The character is: %c.", d);
}
