
#include <stdio.h>

main()
{
    int ch;
    
    printf("Please type in one char:n");
    ch = getc(stdin);
    printf("The character you just entered is: %cn", ch);
    return 0;
}
