单选题已知staticinta[]={5,4,3,2,1},*p[]={a+3,a+2,a+1,a},**q=p,则表达式*(p[0]+1)+**(q+2)的值是()。A5B4C6D7

单选题
已知staticinta[]={5,4,3,2,1},*p[]={a+3,a+2,a+1,a},**q=p,则表达式*(p[0]+1)+**(q+2)的值是()。
A

5

B

4

C

6

D

7


参考解析

解析: 暂无解析

相关考题:

有以下程序#include stdio.hstruct tt{ int x;struct tt *y;} *p;struct tt a[4]={20,a+1,15,a+2,30,a+3,17,a};main(){ int i;p=a;for(i=1;i=2;i++) {printf("%d,",p-x); p=p-y;}}程序的运行结果是A)20,30,B)30,17C)15,30,D)20,15,

设有如下说明:var q,p:^integer; 且已知有过程调用new(p);new(q);则下面语句正确的是( ) Aread(p,q);Bp^:=q^Cp:=p+1Dp:=p+q;

已知“当且仅p才q,”“p∧q”,“p→q”均真,则()。 A、p真q真B、p假q假C、p真q假D、非p真非q假

有如下定义:inta[5],*p;p=a;则下列描述错误的是()。A.表达式p=p+1合法的B.表达式a=a+1是合法的C.表达式p-a是合法的D.表达式a+2是合法的

定义如下一维数组: inta[5],*p=a; 则下面描述中,错误的是( )。A.表达式p=p+1是合法的B.表达式a=a+1是合法的C.表达式p-a是合法的D.表达式a+2是合法的

有以下程序:includestruct tt{int x;struct tt*y;}*p;struct tt a[4]={20,a+1,15,a+2, 有以下程序: #include<stdio.h> struct tt {int x;struct tt*y;}*p; struct tt a[4]={20,a+1,15,a+2,30,a+3,17,a} main() { int i; p=a; for(i=1;i<=2;i++){printf("%d",p->x);p=P->y;} } 程序的运行结果是( )。A.20,30,B.30,17C.15,30D.20,15

执行下面的语句后,表达式*(p[0]+1)+**(q+2)的值为______。 int a[]={5,4,3,2,1},*p[]={a+3,a+2,a+1,a},**q=p;A.8B.7C.6D.5

有以下程序:includestruct tt{ int x;struct tt *y;} *p;struct tt a[4]={20,a+1,15,a 有以下程序: #include<stdio.h> struct tt { int x;struct tt *y;} *p; struct tt a[4]={20,a+1,15,a+2,30,a+3,17,a}; main() {int i; p=a; for(i=1;i<=2;i++) {printf("%d,",p->x);p=p->y;} } 程序的运行结果是( )。A.20,30,B.30,17C.15,30,D.20,15,

已知定义“int x = 1, *p”,则合法的赋值表达式是( )。 A、p = &xB、p = xC、*p = &xD、*p = *x

有以下程序#includestdio.hstruct tt{int x; struct tt *y;}*p;struct tt a[4]={20,a+1,15,a+2,30,a+3,17,a};main(){int I;p=a;for(i=1;i=2;i++) printf(“%d”,p-x); p=p-y;}程序的运行结果是( )。A.20,30B.30,17C.15,30D.20,15

设X是随机变量,已知P(X≤1)=p,P(X≤2)=q,则P(X≤1,X≤2)等于( ).A.p+qB.p-qC.q-pD.p

已知int a[]={ 0,2,4,6,8,10 },*p=a+1;其值等于0的表达式是()A、*(p++)B、*(++p)C、*(p--)D、*(--p)

已知p→q为假,则p和q的真值为()。A、p真并且q真B、p真并且q假C、p假并且q真D、p假并且q假

已知p要么q为假,则p和q的真值为()、()。

已知p∧q为假,则p和q的真值为( )、( )、( )。

已知P∧q为真,则()为假。A、P→qB、P∨qC、P←qD、P←→q

已知p←q为假,则P与q的取值情况必为()。A、p与q都真B、p与q都假C、p真且q假D、p假且q真

已知“P←→q”、“P∧q”、“P→q”均真,则().A、P真q真B、P假q假C、P真q假D、非P真非q假

执行下面的语句后,表达式*(p[0]+1)+**(q+2)的值为()。 inta[]={5,4,3,2,1},*p[]={a+3,a+2,a+1,a},**q=p;A、8B、7C、6D、5

已知staticinta[]={5,4,3,2,1},*p[]={a+3,a+2,a+1,a},**q=p,则表达式*(p[0]+1)+**(q+2)的值是()。A、5B、4C、6D、7

若inta[]={1,2,3},*p;则下列赋值语句中正确的是()。A、p=a;B、*p=a;C、*(a+1)=a;D、p=a+1;

单选题设有以下说明和语句:int x[3][4],(* p)[4];p=a;则与表达式*(*p+2)等价的选项是(  )。Aa[0][2]B*(a+2)[0]C(*a+2)[0]Da[2][0]

单选题已知“P←→q”、“P∧q”、“P→q”均真,则().AP真q真BP假q假CP真q假D非P真非q假

单选题已知int a[]={ 0,2,4,6,8,10 },*p=a+1;其值等于0的表达式是()A*(p++)B*(++p)C*(p--)D*(--p)

单选题执行下面的语句后,表达式*(p[0]+1)+**(q+2)的值为()。 inta[]={5,4,3,2,1},*p[]={a+3,a+2,a+1,a},**q=p;A8B7C6D5

单选题有以下程序#include struct tt{ int x; struct tt *y;} *p;struct tt a[4]={20,a+1,15,a+2,30,a+3,17,a};main(){ int i; p=a; for(i=1;i=2;i++) {  printf(%d,,p-x);  p=p-y; }}程序的运行结果是(  )。A20,15,B30,17,C15,30,D20,30,

填空题已知p→q为假,则p和q的真值为( )。

填空题已知p要么q为假,则p和q的真值为()、()。