鱼C论坛

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

[已解决]c语言第6P的代码,我没有抄错,为什么还报错啊

[复制链接]
发表于 2020-3-4 13:49:58 | 显示全部楼层 |阅读模式

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

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

x

#include <stdio.h>

int main()
{
    int i;
    char j;
    float k;
   
    i = 123;
    j = 'c';
    k = 3.14;

    printf("size of int is %d\n", sizeof(int));
    printf("size of i is %d\n", sizeof(i));
    printf("size of char is %d\n", sizeof(char));
    printf("size of j is %d\n", sizeof j);
    printf("size of float is %d\n", sizeof(float));
    printf("size of k is %d\n", sizeof k);
   
    return 0;
}






分割
test.c:13:35: warning: format specifies type 'int' but the argument has type
      'unsigned long' [-Wformat]
    printf("size of int is %d\n", sizeof(int));
                           ~~     ^~~~~~~~~~~
                           %lu
test.c:14:33: warning: format specifies type 'int' but the argument has type
      'unsigned long' [-Wformat]
    printf("size of i is %d\n", sizeof(i));
                         ~~     ^~~~~~~~~
                         %lu
test.c:15:36: warning: format specifies type 'int' but the argument has type
      'unsigned long' [-Wformat]
    printf("size of char is %d\n", sizeof(char));
                            ~~     ^~~~~~~~~~~~
                            %lu
test.c:16:33: warning: format specifies type 'int' but the argument has type
      'unsigned long' [-Wformat]
    printf("size of j is %d\n", sizeof j);
                         ~~     ^~~~~~~~
                         %lu
test.c:17:37: warning: format specifies type 'int' but the argument has type
      'unsigned long' [-Wformat]
    printf("size of float is %d\n", sizeof(float));
                             ~~     ^~~~~~~~~~~~~
                             %lu
test.c:18:33: warning: format specifies type 'int' but the argument has type
      'unsigned long' [-Wformat]
    printf("size of k is %d\n", sizeof k);
                         ~~     ^~~~~~~~
                         %lu
6 warnings generated.



最佳答案
2020-3-4 14:55:24
    你的编译器非常古怪,像下面这样修改试试看
    printf("size of int is %d\n", (int) sizeof(int))     ;
    printf("size of i is %d\n", (int) sizeof(i))         ;
    printf("size of char is %d\n", (int) sizeof(char))   ;
    printf("size of j is %d\n", (int) sizeof(j))         ;
    printf("size of float is %d\n", (int) sizeof(float)) ;
    printf("size of k is %d\n", (int) sizeof(k))         ;
        不过,都是警告信息,应该不会影响代码的编译和正常运行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-3-4 14:03:21 | 显示全部楼层
有没有大神知道
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-4 14:55:24 | 显示全部楼层    本楼为最佳答案   
    你的编译器非常古怪,像下面这样修改试试看
    printf("size of int is %d\n", (int) sizeof(int))     ;
    printf("size of i is %d\n", (int) sizeof(i))         ;
    printf("size of char is %d\n", (int) sizeof(char))   ;
    printf("size of j is %d\n", (int) sizeof(j))         ;
    printf("size of float is %d\n", (int) sizeof(float)) ;
    printf("size of k is %d\n", (int) sizeof(k))         ;
        不过,都是警告信息,应该不会影响代码的编译和正常运行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-4 16:24:38 | 显示全部楼层
代码是对的,没有问题,可能是你用的编译器版本原因,我用Dev C++和vim都试过了,没问题
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-4 21:28:14 | 显示全部楼层
printf("size of i is %d\n", sizeof i);
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-6 22:37:50 | 显示全部楼层
是的,可能是我的编译器问题,我用的是mac终端
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-15 23:47

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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