识趣 发表于 2022-3-28 17:51:53

程序报“conflicting declaration”错误 求解

#include<stdio.h>

main()
{
        long a,b;
        int a,b,c,d;
        x=5;
        y=6;
        a=7;
        b=8;
        c=x+a;
        d=y+b;
        printf("c=x+a=%d,d=y+b=%d\n",c,d);
}

大马强 发表于 2022-3-28 19:30:35

#include<stdio.h>

int main() // 主函数要写好
{
      long x,y; // 你这应该是 x y吧
      int a,b,c,d;
      x=5;
      y=6;
      a=7;
      b=8;
      c=x+a;
      d=y+b;
      printf("c=x+a=%d,d=y+b=%d\n",c,d);
      return 0;
}

傻眼貓咪 发表于 2022-3-28 19:52:38

重复声明变量 a 和 b 了
页: [1]
查看完整版本: 程序报“conflicting declaration”错误 求解