warning: the `gets' function is dangerous and should not be used.
问题出在程序中使用了getsLinux下gcc编译器不支持这个函数,解决办法是使用fgetsfgets()函数的基本用法为:
fgets(char*s,intsize,FILE*stream);/* 代码实现 */#includeintmain(){ charname[20]; printf("\n输入任意字符:"); fgets(name,20,stdin);//stdin意思是键