char *fgets(char *s, int n, FILE *stream); {; register int c;; register char *cs;; cs=s;; while(--n>0 &&(c = getc(stream))!=EOF) ...
確定! 回上一頁