#include<stdio.h>
int main()
{
// declare variable i
char ch;
// Ask user to enter a character
printf("Enter a character: \n");
// accept input from keyboard
scanf("%c", &ch);
// print the entered character
printf("You entered %c", ch);
// signal to operating system everything works fine
return 0;
}