C语言fgets函数 C语言gets和puts函数 C语言fgets函数 C语言fgets函数 /* fgets1.c -- using fgets() and fputs() */ #include <stdio.h> #define STLEN 14 int main(void) { char words[STLEN]; puts("Enter a string, please."); fgets(words, STLEN, stdin); printf("Your string twice (puts(), then fputs()):\n"); puts(words); fputs(words, stdout); puts("Enter another string, please."); fgets(words, STLEN, stdin); printf("Your string twice (puts(), then fputs()):\n"); puts(words); fputs(words, stdout); puts("Done."); return 0; } C语言gets和puts函数 C语言fgets函数