// char, gets, s[30]<br>รับตัวอักษรหลายตัวแล้วนำไปแสดงผล
/* http://www.thaiall.com/tc */
#include <stdio.h>
#include <conio.h>
void main()
{
char s[30];
printf(
"Put string :"
);
gets(s);
"You put %s"
,s);
getch();
}