#include <stdio.h>

int
main (void)
{
  int x = 9, y;
  double s = 13.86;
  char * word = "computer";
  char ch = word[5];
  
  y = (int) s;

  printf ("\tThe value of x is %lf.\n", x);
  printf ("\tThe value of y is %f.\n", y);
  printf ("\tThe value of s is %d.\n", s);
  printf ("\tThe value of word is %c.\n", word);
  printf ("\tThe value of ch is %s.\n", ch);
  printf ("\tThe value of ch is %d.\n", ch);

  return 0;
} // main
