在使用C语言中的gets()函数时,可能会出现一些报错。以下是一些常见的解决方法: 错误:gets() is dangerous and should not be used. 解决方法:使用更安全的函数fgets()来代替gets()。 错误:warning: the gets function is dangerous and should not be used. 解决方法:同样使用fgets()函数来代替gets()。 错误...
gets把从stdin中输入的一行信息存入cmd中,然后将换行符置换成串结尾符NULL。用户要保证缓冲区的长度大于或等于最大的行长。 gets的详细解释: char * gets ( char * str );//Get string from stdin Reads characters from stdin and stores them as a string into str until a newline character ('\n') or...