#include <stdio.h>

/* 
  型を確認する 473088 榎田裕一郎
*/

main() {
  char c;
  int i;
  float f;
  double d;

  c = 'x';
  i = 1234;
  f = 3.14159f;
  d = 1.0e-5;

  printf("char type : %c\n", c);
  printf("int type : %d\n", i);
  printf("float type : %f\n", f);
  printf("double type : %e\n", d);

  return 0;
}
