C語言:用fgets取代gets. 以下是原有程式碼 #include <stdio.h> #include <stdlib.h> int main() { char a[999]; gets(a); printf("%s",a); return 0; }
確定! 回上一頁