天天看點

c語言中遇到“警告: the `gets' function is dangerous and should not be used.”的解決辦法

寫于2016年12月1日。

在用c的庫函數gets(str)時,編譯出現該提示。原因在于linux下gcc不支援gets指令,要換成fgets(arr,size,stdin)。