下列程序描述的q是几位的?module cnt10(input clk,output reg[7:0] q);always @(posedge clk) q = q + 1;endmodule A: 7 B: 8 C: 10 D: 12
下列程序描述的q是几位的?module cnt10(input clk,output reg[7:0] q);always @(posedge clk) q = q + 1;endmodule A: 7 B: 8 C: 10 D: 12
有以下程序: #include<stdio.h> main() int a=7, b=8, *p, *q, *r; p=&a; q=&b; r=p; p=q; q=r; printf("%d, %d, %d, %d\n', *p, *q, a, b); 程序运行后的输出结果是()。 A: 8, 7, 8, 7 B: 7, 8, 7, 8 C: 8, 7, 7, 8 D: 7, 8, 8, 7
有以下程序: #include<stdio.h> main() int a=7, b=8, *p, *q, *r; p=&a; q=&b; r=p; p=q; q=r; printf("%d, %d, %d, %d\n', *p, *q, a, b); 程序运行后的输出结果是()。 A: 8, 7, 8, 7 B: 7, 8, 7, 8 C: 8, 7, 7, 8 D: 7, 8, 8, 7
以下程序段中能够正确实现p和q中两个字符串互换的是: A: char p[10]="hello", q[10]= "world", *t;strcpy(t,p); strcpy(p,q); strcpy(q,t); B: char p[10]= "hello", q[10]= "world", *t;t=p; p=q; q=t; C: char p[10]= "hello", q[10]= "world", t[10];strcpy(t,p); strcpy(p,q); strcpy(q,t); D: char p[10]= "hello", q[10]= "world", t[10];t=p; p=q; q=t;
以下程序段中能够正确实现p和q中两个字符串互换的是: A: char p[10]="hello", q[10]= "world", *t;strcpy(t,p); strcpy(p,q); strcpy(q,t); B: char p[10]= "hello", q[10]= "world", *t;t=p; p=q; q=t; C: char p[10]= "hello", q[10]= "world", t[10];strcpy(t,p); strcpy(p,q); strcpy(q,t); D: char p[10]= "hello", q[10]= "world", t[10];t=p; p=q; q=t;
执行以下程序后,b的值为?#include[stdio.h]int main(){ int b,k=4,m=6,*p=&k,*q=&m;b=(-*p)/(*q)+7;} A: 5 B: 6 C: 7 D: 10
执行以下程序后,b的值为?#include[stdio.h]int main(){ int b,k=4,m=6,*p=&k,*q=&m;b=(-*p)/(*q)+7;} A: 5 B: 6 C: 7 D: 10
以下程序段中能够正确实现p和q中两个字符串互换的是: A: char p[10]="hello", q[10]= "world", *t;strcpy(t,p); strcpy(p,q); strcpy(q,t); B: char p[10]= "hello", q[10]= "world", *t;t=p; p=q; q=t; C: char p[10]= "hello", q[10]= "world", t[10];strcpy(t,p); strcpy(p,q); strcpy(q,t); D: char p[10]= "hello", q[10]= "world", t[10];t=p; p=q; q=t;
以下程序段中能够正确实现p和q中两个字符串互换的是: A: char p[10]="hello", q[10]= "world", *t;strcpy(t,p); strcpy(p,q); strcpy(q,t); B: char p[10]= "hello", q[10]= "world", *t;t=p; p=q; q=t; C: char p[10]= "hello", q[10]= "world", t[10];strcpy(t,p); strcpy(p,q); strcpy(q,t); D: char p[10]= "hello", q[10]= "world", t[10];t=p; p=q; q=t;
10(20)kV及以下三相供电电压允许偏差为额定电压的%() A: ±7,+7%~-10 B: ±7,±7 C: +7%~-10,+7%~-10 D: ±10,±10
10(20)kV及以下三相供电电压允许偏差为额定电压的%() A: ±7,+7%~-10 B: ±7,±7 C: +7%~-10,+7%~-10 D: ±10,±10
Q: at what time is the man most likely to go to work?( ) A: 7 p.m. B: 3 p.m. C: 10 p.m. D: 6 p.m.
Q: at what time is the man most likely to go to work?( ) A: 7 p.m. B: 3 p.m. C: 10 p.m. D: 6 p.m.
证明方程 [tex=4.143x1.357]/ybemWJQH/wH/10bhavH7Q==[/tex] 在 1 与 2 之间至少存在一个实根.
证明方程 [tex=4.143x1.357]/ybemWJQH/wH/10bhavH7Q==[/tex] 在 1 与 2 之间至少存在一个实根.
国家标准规定220伏单相供电电压允许偏差为额定电压的(). A: +10%、-7% B: +7%、-7% C: +7%、-10% D: +10%、-10%
国家标准规定220伏单相供电电压允许偏差为额定电压的(). A: +10%、-7% B: +7%、-7% C: +7%、-10% D: +10%、-10%
以下选项中,对指针变量不正确的操作是()。 A: ints[10],*q;q=&s[0]; B: ints[10],*q;q=s; C: ints[10];int*q=s=1000; D: ints[10];int*q1=s,*q2=s;*q1=*q2;
以下选项中,对指针变量不正确的操作是()。 A: ints[10],*q;q=&s[0]; B: ints[10],*q;q=s; C: ints[10];int*q=s=1000; D: ints[10];int*q1=s,*q2=s;*q1=*q2;