NO.205 打印null为什么结果不是0?
本帖最后由 我爱橙 于 2022-2-25 10:28 编辑#include <stdio.h>
int main()
{
printf("%d\n",null);
return 0;
}
为什么结果不是0? 大写试试
#include <stdio.h>
int main()
{
printf("%d\n",NULL);
return 0;
} printf("%d\n",NULL);
0
你是多少? ba21 发表于 2022-2-24 18:03
printf("%d\n",NULL);
0
你是多少?
程序运行不了
'null' was not declared in this scope 我爱橙 发表于 2022-2-24 18:15
程序运行不了
'null' was not declared in this scope
要大写
是NULL
页:
[1]