原 型:int fputs(const char *s, FILE *stream);
头 文 件:stdio.h
说 明:把s指向的字符串写到stream指向的流中。
返 回 值:如果成功,返回非负值。如果写发生错误,则返回EOF。
相似函数:puts
相关函数:fgets
也可参见:gets