以下程序的输出结果是______。 main() {printf("%d\n",NULL); }
A.0
B.-1
C.1
D.不确定的值(因变量无定义)
第1题:
有以下程序: #include <stdio.h> main() { printf("%d\n",NULL)"} 程序运行后的输出结果是( )。
A.0
B.1
C.-1
D.NULL没定义,出错
第2题:
以下程序的输出结果是( )。 #include<stdio.h> main() { printf("%d\n",NULL); }
A.不确定的值(因变量无定义)
B.0
C.-1
D.1
第3题:
以下程序的输出结果是_______。 #include<stdio.h> main() { printf("%d\n",NULL); }
A.不确定的(因变量无定义)
B.0
C.-1
D.1
第4题:
以下程序的输出结果是______。 #include<stdio.h> main() {printf("%d\n",NULL); }
A.不确定的值
B.0
C.-1
D.1
第5题:
下列程序的输出结果是______。#include <stdio.h>main (){ printf("%d\n",NULL);}
A.不确定(因变量无定义)
B.0
C.-1
D.1