C语言fgets函数 C语言fgets函数 C语言fgets函数 C语言fgets函数 /* fgets2.c -- using fgets() and fputs() */ #include <stdio.h> #define STLEN 10 int main(void) { char words[STLEN]; puts("Enter strings (empty line to quit):"); while (fgets(words, STLEN, stdin) != NULL && words[0] != '\n') fputs(words, stdout); puts("Done."); return 0; } C语言fgets函数 C语言fgets函数