// editor2
#include<stdio.h>
int main()
{
    char name;
    printf("enter the name:");
    scanf("%c",&name);
    printf("your name is:",name)
}