设有以下程序段; int a[5]={0},*p,*q; p=a;q=a;则合法的运算是______。A.p+qB.p-qC.p*qD.p%q
设有以下程序段; int a[5]={0},*p,*q; p=a;q=a;则合法的运算是______。
A.p+q
B.p-q
C.p*q
D.p%q
相关考题:
若有以下定义则不能将指针q所指的结点接到链表末尾的程序段是()。 A.q-next=NULL;p=p-next;p-next=qB.p=p-next;q-next=p-next;p-next=qC.p=p-next;q-next=p;p-next=qD.p=(*p).next;(*q).next=(*p).next;(*p).next=q
若有以下程序: void g(int **q) { (**q) ++; (*q) ++; } void main() { int line [5]; int *p=line; for (i=0; i<5; i++) { *p=i; g(P); } for (i=0; i<5; i++) cout<<line[i]; cout<<end1; } 该程序运行后的输出结果为( )。A.12345B.1234C.11111D.55555
以下基本推理规则错误的是()。A.P, P→Q⇒QB.P→Q , ¬Q⇒¬PC.¬P,P⋁Q⇒QD.P→Q, ¬P ⇒ ¬Q