鱼C论坛

 找回密码
 立即注册
查看: 1532|回复: 5

[已解决]fputs的wen't

[复制链接]
发表于 2019-6-1 23:45:16 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#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.");

        getchar();
        return 0;
}
为什么第一个fputs打印完后,下一个打印会换行,
而第二个fputs打印完之后,打印“Done”就不会换行?
最佳答案
2019-6-2 06:15:22
Notice that fputs not only differs from puts in that the destination stream can be specified, but also fputs does not write additional characters, while puts appends a newline character at the end automatically.
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-6-2 00:14:05 | 显示全部楼层
不知道你想说什么,我看没区别
201962_01338.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

发表于 2019-6-2 06:15:22 | 显示全部楼层    本楼为最佳答案   
Notice that fputs not only differs from puts in that the destination stream can be specified, but also fputs does not write additional characters, while puts appends a newline character at the end automatically.
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-6-2 10:55:21 | 显示全部楼层
ba21 发表于 2019-6-2 00:14
不知道你想说什么,我看没区别

第二个fputs书上是连接着Done的
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-6-2 10:57:27 | 显示全部楼层
xypmyp 发表于 2019-6-2 06:15
Notice that fputs not only differs from puts in that the destination stream can be specified, but al ...

but the frist fputs appends a newline
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-6-2 11:01:50 | 显示全部楼层
xypmyp 发表于 2019-6-2 06:15
Notice that fputs not only differs from puts in that the destination stream can be specified, but al ...

I understand
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-10-3 19:22

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表