2012/06/28

C/C++ gets()錯誤

練習使用gets,Compiler卻噴錯以下的錯誤訊息

/tmp/ccNhiTKu.o: In function `main':
open.c:(.text+0x38): warning: the `gets' function is dangerous and should not be used.

錯誤訊息:不應該使用這個方法,這方法是非常危險的。

所以我上網查一下

裡面提到解決方法有使用fgets方法去解決就好了