单项选择题
在浏览WWW时,如果连接到一个安全的站点,应当以( )开头来书写统一资源定位器。
A.shttp://
B.http:s//
C.http://
D.https//
点击查看答案
<上一题
目录
下一题>
热门
试题
单项选择题
某一个汉字的区位码为(2113H),则其内码为 ( )
A.(2199)
10
B.(C1B3H)
C.(C1B3)
10
D.(B1B3H)
点击查看答案
单项选择题
为使*p=20,下面正确的程序是 ( )
A.# include<stdio.h>
main( )
int a=10,b=20,*p=&b;
printf("%d\t%d\n",p,*p);
*p)
B.# include<stdio.h>
main( )
int a=10,b=20,*p=b;
printf("%d\t\%d\n",p,*p)
C.# include<stdio.h>
main( )
int a=10,b=20,*p;
p=&a;
p + +;
printf("%d\t\%d\n",p,*p);
D.# include<stdio.h>
main( )
int a=10,b=20,*p;
*p=20;
printf("%d\t\%d\n",p,*p);
点击查看答案
相关试题
[19]struct link * next
下面的程序用来统计文件中字符的个数。请填...
[19]struct link * next
下面程序的输出结果是 【18】 。 # ...
[6](X>10&&x<100)|| x<0...