若定义:int a=511,*b=a;则printf(“%d\n”,*B) ;的输出结果为A.无确定值B.a的地址C.512D.511

若定义:int a=511,*b=&a;则printf(“%d\n”,*B) ;的输出结果为

A.无确定值

B.a的地址

C.512

D.511


相关考题:

设有定义: float x=123.4567; ,则执行以下语句后的输出结果是 【 6 】 。printf("%f\n",(int)(x*100+0.5)/100.0);

(7)若变量x、y已定义为int类型且x的值为99,y的值为9,请将输出语句printf(【7】,x/y);补充完整,使其输出的计算结果形式为:x/y=11

若定义:int a=511, *b=,则printf("%d\n", *b)的输出结果为: A.无确定值B.a的地址C.512D.511

若变量n中的值为24,则print()函数共输出【7】行,最后一行有【8】个数。void print (int n,int aa[]){int i;for (i=1; i1;i++){printf ("%6d", aa[i]);if(!(i%5)) printf ("\n");}printf ("\n");}

若变量n中的值为24,则pint函数共输出【】行。void pint(int n,int aa[]){ int i; for(i=1; i=n; i++) { printf("%6d",aa[i]); if(!(i%5))printf("\n"); }printf("\n");}

以下程序的输出结果是______。 main() {printf("%d\n",NULL); }A.0B.-1C.1D.不确定的值(因变量无定义)

定义int a=5,b=20;若执行语句printf("%d\n",++a*--b/5%13);后,输出的结果为 【6】 。

若有定义:inta=5,*b=,则printf("%d\n",*b);语句的输出结果为()。A.随机值B.a的地址C.6D.5

若有定义:int X=0,* P=x;,则语句printf(”%d\n”,* P.的输出结果是( )。A.随机值B.0C.X的地址D.P的地址

若ch为char型变量,k为int型变量(已知字符a的ASCIl码是97),则执行下列语句后输出的结果为( )。 ch=b; k=10: printf("%X,%o,",ch,ch,k); printf("k=%%d\n",k);A.因变量类型与格式描述符的类型不匹配,输出无定值B.输出项与格式描述符个数不符,输出为0值或不定值C.62,142,k=%dD.62,142,k=%l0

设有定义:float x=123.4567;,则执行以下语句后的输出结果是[ ]。printf("%f\n"(int)(x*100+0.5)/100.1;

若变量x、y已定义为int类型且X的值为33,y的值为3,请将输出语句printf(( ),x/y);补充完整,使其输出的计算结果形式为:x/y=11。

若有定义:int x=0,*p=x;,则语句printf("%d\n",*p);的输出结果是 ______。A.随机值B.0C.x的地址D.p的地址

若执行下列程序时从键盘上输入2,则输出结果是()。 inclUde main() {int a; scanf("%d", 若执行下列程序时从键盘上输入2,则输出结果是( )。#inclUde<stdio.h>main(){int a;scanf("%d",A);if(a++<3)printf("%d\n",A);else printf("%d\n",a--);}A.1B.3C.2D.4

若有定义:“int*P,x=0,*p,p=&x;”,则语句“printf("%d\n",*p);”的输出结果是( )。A.随机值B.0C.x的地址D.P的地址

若变量n中的值为24,则print()函数共输出行,最后一行有个数。void print (int n,int aa[]){ int i; for(i=1; i1;i++) { printf("%6d",aa[i]); if(!(i%5)) printf("\n"); } printf ("\n");}

设有如下定义: int x=10,y=3,z; 则语句printf("%d\n",z=(x%y,x/y)); 的输出结果是( )。A.1SX 设有如下定义: int x=10,y=3,z; 则语句printf("%d\n",z=(x%y,x/y)); 的输出结果是( )。A.1B.0C.4D.3

若执行以下程序时从键盘上输入9,则输出结果是( )。 main( ) { int n; scanf(”%d”,&n); if(n++10)printf(”/%d\n”,n); else printf(”%d\n”,n--); }A.11B.10C.9D.8

以下程序的输出结果是()。 includemain(){printf("%d\n",NULL);}A.不确定的值(因变量无 以下程序的输出结果是( )。 #include<stdio.h> main() { printf("%d\n",NULL); }A.不确定的值(因变量无定义)B.0C.-1D.1

定义如下变量: int n=10; 则下列循环的输出结果是( )。 while(n>7) { -n; printf("%d\n",n); }A.1098B.987C.10987D.9876

若int类型数据占两个字节,则下列语句的输出结果为( ) int x=-1; printf("%u\n",x);A.-1B.32767C.65535D.65536

下列程序的输出结果是______。include main(){printf("%d\n",NULL);}A.不确定(因变量无 下列程序的输出结果是______。#include <stdio.h>main (){ printf("%d\n",NULL);}A.不确定(因变量无定义)B.0C.-1D.1

以下程序的输出结果是_______。includemain(){printf("%d\n",NULL);}A.不确定的(因变量 以下程序的输出结果是_______。 #include<stdio.h> main() { printf("%d\n",NULL); }A.不确定的(因变量无定义)B.0C.-1D.1

设有定义:intx=0,*p=x;则语句printf(“%d/n”,*p);的输出结果是()A、随机值B、0C、x的地址D、p的地址

若定义:int a=511,*b=a;, 则printf("%d/n",*b);的输出结果为()。A、a的地址B、511C、512D、无确定值

设有定义int m=1,n=-1;则执行语句printf(〞%d/n〞,(m--++n));后的输出结果是()A、-1B、0C、1D、2

单选题设有定义int m=1,n=-1;则执行语句printf(〞%d/n〞,(m--++n));后的输出结果是()A-1B0C1D2

单选题若定义:int a=511,*b=a;, 则printf("%d/n",*b);的输出结果为()。Aa的地址B511C512D无确定值