不知道错在哪

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

慕粉6442558

2020-10-09 18:08

运行成功,输出错误

hello.c: In function 'main':
hello.c:8:58: warning: format '%c' expects a matching 'int' argument [-Wformat=]
  printf("小明现在在慕课网上学习IT技术 unit=%c");
                                                          ^
小明今年?岁 age=18
小明身高?? height=1.850000
小明现在在慕课网上学习IT技术 unit=


写回答 关注

1回答

  • weixin_慕桂英2001528
    2020-10-10 17:07:00

    #include <stdio.h>

    int main(){

        int age = 18;

       

    float height = 1.85;

    char unit = 'm';

    printf("小明今年%d岁\n", age);

    printf("小明身高%f%c\n", height, unit);

    printf("小明现在在慕课网上学习IT技术");

    return 0;

    }


C语言入门

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

926020 学习 · 20793 问题

查看课程

相似问题