gets怎么用EOF(gets怎么用)

导读 gets()、puts()都是针对字符串类型处理的,传入的参数是char *型,或char[]型gets()是输入字符串函数。puts()是字符串输出函数例如:char...

gets()、puts()都是针对字符串类型处理的,传入的参数是char *型,或char[]型gets()是输入字符串函数。

puts()是字符串输出函数例如:char *a;gets(a);或者:char a[10];gets(a);相当于:scanf("%s",a);输出函数:puts(a);相当于:printf("%s",a);。

免责声明:本文由用户上传,如有侵权请联系删除!