皮皮学,免费搜题
登录
搜题
【简答题】
理想来源于()。
拍照语音搜题,微信中搜索"皮皮学"使用
参考答案:
参考解析:
知识点:
.
..
皮皮学刷刷变学霸
举一反三
【单选题】下面程序的运行结果是( ). #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"
【简答题】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.
不确定的值
相关题目: