以下程序运行后,a的值是() main() {inta,k=4,m=6,*pl=&k,*p2=&m; a=p1=&m; printf("%d",a); }
A: 4
B: 1
C: 0
D: 运行时出错,a无定值
A: 4
B: 1
C: 0
D: 运行时出错,a无定值
举一反三
- 以下程序运行后,a的值是 ( ) main( ) inta,k=4,m=6,*pl=&k,*p2=&m; a=p1=&m; printf("%d\n",a); A: 4 B: 1 C: 0 D: 运行时出错,a无定值
- main(){int a,k=4,m=6,*p1=&k,*p2=&m;a=p1==&m;printf("%d\n",a);}以上程序运行后,a的值是 A: 4 B: 1 C: 0 D: 运行时出错,a无定值
- 有以下程序void main(){ int a,k=4,m=4,*p1=&k,*p2=&m; a=p1==&m; printf("%d\n",a);}程序运行后的输出结果是( )。 A: 4 B: 1 C: 0 D: 运行时出错,无定值
- 以下程序执行后,a 的值是( )。int main() { int a,k=4,m=6,*p1=&k,*p2=&m; a=p1==&m; printf("%d\n",a); } A: 4 B: 1 C: 0 D: 运行时出错,无定值
- "以下程序执行后a的值是A)4B)1C)0D)运行时出错,a无定值main(){inta,k=4,m=6,*p1=&k,*p2=&m;a=p1=