C examples for File:File Write
Use fgets() and fputs() functions to read and output string
#include <stdio.h> #define STLEN 14/*from ww w . j ava 2 s .co m*/ 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; }