皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
同样的弓长,原来拉一拍,现在要拉两拍,弓速应该____。
A.
快一倍
B.
快两倍
C.
慢一半
D.
不变
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【单选题】下面程序的运行结果是( ). #include "stdio.h" #include "string.h" main( ) { char *s1="AbDeG"; char *s2="AbdEg"; s1+=2;s2+=2; printf("%d\n",strcmp(s1,s2)); }
A.
正数
B.
负数
C.
D.
不确定的值
【单选题】有以下程序: #include void swap(char *x,char *y) { char t; t=*x;*x=*y;*y=t; } main() { char *s1="abc",*s2="123"; swap(s1,s2); printf("%s,%s",s1,s2); } 程序执行后的输出结果是( )。
A.
321,cba
B.
abc,123
C.
123,abc
D.
1bc,a23
【单选题】若输入"abcdef"、"abdef",以下程序的输出结果为( )。 #include #include main() { int n; char s1[20],s2[20],*p1,*p2; scanf("%s",s1); scanf("%s",s2); p1=s1; p2=s2; n=strcmp(p1,p2); printf("%d\n",n);}
A.
-1
B.
0
C.
0
D.
"abdef"
【简答题】When was the graduate school of Tsinghua University set up? In the ______.
【单选题】以下程序执行后的输出结果是________。 #include " stdio.h " #include " string.h " void main() { char s1[10],*s2= " abcdef " ; strcpy(s1,s2); printf( " %s " ,s1); }
A.
ab\0cdef
B.
abcdef
C.
ab
D.
以上答案都不对
【单选题】.下面程序的运行结果是( )。 #include "stdio.h" #include "string.h" main() { char *s1="AbDeG"; char *s2="AbdEg"; s1+=2; s2+=2; printf("%d\n",strcmp(s1,s2)); getch(); }
A.
正数
B.
负数
C.
D.
不确定的值
【简答题】#include #include void main() { char * s1="AbDeG"; char * s2="ABdEg"; s1+=2; s2+=2; printf("%d\n",strcmp(s1,s2));
【简答题】When was Tsinghua University founded?
【单选题】运行以下程序,得到的结果是: main() { char *s1="AbDeG"; char *s2="AbdEg"; s1+=2;s2+=2; printf("%d\n",strcmp(s1,s2)); }
A.
正数
B.
负数
C.
D.
不知道
【单选题】下面程序的运行结果是( ) #include #include main() { char *s1="AbDeG"; char *s2="AbdEg"; s1+=2;s2+=2; printf("%d\n",strcmp(s1,s2)); }
A.
负数
B.
0
C.
正数
D.
不确定的值
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题