我爱橙 发表于 2022-2-24 17:57:15

NO.205 打印null为什么结果不是0?

本帖最后由 我爱橙 于 2022-2-25 10:28 编辑

#include <stdio.h>

int main()
{
      printf("%d\n",null);
      return 0;
}

为什么结果不是0?

大马强 发表于 2022-2-24 18:01:53

大写试试
#include <stdio.h>

int main()
{
      printf("%d\n",NULL);
      return 0;
}

ba21 发表于 2022-2-24 18:03:38

printf("%d\n",NULL);
0
你是多少?

我爱橙 发表于 2022-2-24 18:15:42

ba21 发表于 2022-2-24 18:03
printf("%d\n",NULL);
0
你是多少?

程序运行不了
'null' was not declared in this scope

大马强 发表于 2022-2-24 18:24:53

我爱橙 发表于 2022-2-24 18:15
程序运行不了
'null' was not declared in this scope

要大写
是NULL
页: [1]
查看完整版本: NO.205 打印null为什么结果不是0?