標籤:filename 字串 div 鍵盤 char size 匹配 linu htm
今天在LINUX下編譯C程式時,出現了:
warning: the `gets‘ function is dangerous and should not be used.
這個warning。
百度之後,得知
問題出在程式中使用了 gets ,Linux 下gcc編譯器不支援這個函數,解決辦法是使用 fgets
1 fgets()函數的基本用法為:2 3 fgets(char * s,int size,FILE * stream);//eg:可以用fgets(tempstr,10,stdin)//tempstr 為char[]變數,10為要輸入的字串長度,stdin為從標準終端輸入。
1 /* 代碼實現 */ 2 3 #include <stdio.h> 4 int main ( ) { 5 6 char name[20]; 7 8 printf("\n 輸入任一字元 : "); 9 10 fgets(name, 20, stdin);//stdin 意思是鍵盤輸入11 12 fputs(name, stdout); //stdout 輸出13 14 return 0;15 }
根據以上改動後,果然沒有了warning,但是調試了n久的一個程式,確實怎麼也沒有正確結果,最後step跟蹤,才發現了問題所在!那就是:
gets從終端讀入是的字串是用\0結束的,而fgets是以\n結束的(一般輸入都用ENTER結束),然後strcmp兩者的時候是不會相等的!
所以建議大家還是繼續讓它warning吧。。為了正確性!
這個問題主要應該是因為linux 和 windows的檔案在分行符號上編碼不一樣導致的,linux的換行是\0,windows的換行是\13\0,是兩個字元。
但是的檔案應該是在windows下編譯的,所以導致會出現兩字元不匹配。建議可以在linux終端下,利用dos2unix filename,來將分行符號處理一下,應該就OK了
參考:
http://hi.baidu.com/zojoyo/blog/item/134874c89b9b94107f3e6fc3.html
http://hi.baidu.com/laoniaoyiren/blog/item/95a0862b291c5124d42af1cd.html/cmtid/e89b2c1fd0c330fb1ad57625
warning: the `gets' function is dangerous and should not be used.(轉)