皮皮学,免费搜题
登录
搜题
【单选题】
固定性药疮的表现下列哪项不对:
A.
圆形红斑
B.
红斑边界清楚
C.
皮肤黏膜交界处为擦烂
D.
消退后不留痕迹
拍照语音搜题,微信中搜索"皮皮学"使用
参考答案:
参考解析:
知识点:
.
..
皮皮学刷刷变学霸
举一反三
【单选题】下面程序的运行结果是( ). #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.
不确定的值
【简答题】______ left _____ the second crossing, then you’ll see the school. A. Take, on       B Turn, at            C Turn, from
【单选题】若输入"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"
【简答题】函数 intersec 的功能是:将既出现在 s1 中、又出现在 s2 中的字符串保存到 s3 字符串中,函数返回 s3 中字符串的个数。 源程序如下: #include #include int intersec(char s1[][10],char s2[][10],char s3[][10],int m,int n){ int i,j,k=0; for(i=0;i for(j=0;j if(...
【单选题】以下程序执行后的输出结果是________。 #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));
【单选题】_____ right at the first crossing, the bank is _____ the left. [     ]
A.
Go, on
B.
Turn, in
C.
Turn, on
【简答题】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.
不知道
相关题目: