C语言中,gets()与puts()该怎么用,求高手举个例子


#include <stdio.h>
void main()
{
char s[81];
gets(s); //输入一个穗码字符串,最长80个字猜茄哪符,回车结束输入。
puts(s); //将输入的字符串显示到屏幕纳前上。
}