C Lisez un personnage

int c = getchar(); //to read only one char
if (c != EOF)
  printf("%c\n", c);
Ribou