Simple example for my problem:
char answer;
printf("enter your favorite letter: \n");
answer = getchar();
Now here is the problem. I want to print that character in screen. But by using "answer" variable. Something like this:
printf(answer);
But of course it doesn't work. What do I do?