Files
clearn/testx.c

9 lines
103 B
C
Raw Normal View History

2017-02-07 20:03:49 +00:00
#include<stdio.h>
int main ()
{
char text[16];
scanf("%c",&text);
printf("test %c",text);
return(0);
}