其他语言
本类阅读TOP10
作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站
#include <stdio.h>
main(){
FILE *Ptr;
char Line[256];
/* ... Open a file for output. */
Ptr = fopen("/tmp/OutputFile", "w");
while(gets(Line)) /* Get data from stdin */ { fprintf(Ptr, "%s\n", Line); /* Send data to file. */ }
fclose(Ptr);}
相关软件: