网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

执行语句printf("%u\n",+12345)的输出结果是( )。

A.12345

B.0

C.-1

D.非定值


参考答案

更多 “ 执行语句printf("%u\n",+12345)的输出结果是( )。A.12345B.0C.-1D.非定值 ” 相关考题
考题 如下语句printf("%c\n",′B′+40);在执行后的输出结果是 【9】 。

考题 执行语句printf(“%u\n”,+12345)的输出结果是( )。A.12345B.0C.-1D.非定值

考题 有以下程序:main(){ union{ unsigned int n; unsigned char c; }u1; u1.c='A'; printf("%c\n",u1.n);}执行后输出结果是( )。A.产生语法错B.随机值C.AD.65

考题 执行语句printf(“%u\n”,+12345)的输出结果是( )。A.12345B.0C.-1D.非定值

考题 以下程序的输出结果是______。A.54321B.12345C.1 2 3 4 5D.5 4 3 2 1 0 main() { int w=5;fun(w);printf("\n");} fun (int k) { if(k>0) fun(k-1); printf("%d"",k);}

考题 执行语句printf(“%ukn”,+12345) 的输出结果是( )。A.12345B.0C.-1D.非定值

考题 有以下程序: main() { union{ unsigned int n; unsigned char c; }u1; u1.c='A'; printf("%c\n",u1.n); } 执行后输出结果是( )。A.产生语法错误B.随机值C.AD.65

考题 有以下程序 main() { union{ unsigned int n; unsigned char C; }ul; u1.C='A'; printf("%c\n",u1.n); } 执行后输出结果是A.产生语法错B.随机值C.AD.65

考题 以下程序的输出结果是【 】。 include main() { intn=12345, d; while(n!=O){d=n%10; pr 以下程序的输出结果是【 】。include <stdio.h>main(){ int n=12345, d;while(n!=O){ d=n%10; printf("%d",d); n/=10; }