%c,\n与%c\n的区别

来源:2-5 格式化输出语句

qq_赵鑫森_0

2018-03-02 02:14

printf("小明身高%f%c,\n", height, unit); 与 printf("小明身高%f%c\n", height, unit);的区别在哪?

写回答 关注

1回答

  • 蛋包饭_0
    2018-03-02 09:02:34
    已采纳
    printf("小明身高%f%c,\n", height, unit);  ======>  小明身高(height)(unit),(换行)
    printf("小明身高%f%c\n", height, unit);  ======>  小明身高(height)(unit)(换行)
    //区别就在于多了逗号


    qq_赵鑫森...

    非常感谢!

    2018-03-10 00:19:12

    共 2 条回复 >

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926020 学习 · 20793 问题

查看课程

相似问题