9 lines
103 B
C
9 lines
103 B
C
#include<stdio.h>
|
|
int main ()
|
|
{
|
|
char text[16];
|
|
scanf("%c",&text);
|
|
printf("test %c",text);
|
|
return(0);
|
|
}
|