#include <stdio.h> int main() { char c1; printf("Enter a character:"); c1=getchar(); putchar(c1); return 0; }