ok im newbie...
i have a question
if i have
#include <stdio.h>
int main()
{
printf("type something:");
char a;
scanf("%c", &a);
printf("%c\n" ,a );
return 0;
}
i will aways get one character in output.My question is:
-how to get world "hello" as standart output from variable using printf?