【单选题】有以下程序: #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); } 程序执行后的输出结果是( )。
【简答题】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); }
【单选题】.下面程序的运行结果是( )。 #include "stdio.h" #include "string.h" main() { char *s1="AbDeG"; char *s2="AbdEg"; s1+=2; s2+=2; printf("%d\n",strcmp(s1,s2)); getch(); }
【简答题】#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)); }
【判断题】女士化妆要简约、清丽、素雅,避免过量使用方向型化妆品,可以当众化妆或补妆。
【单选题】下面程序的运行结果是( ) #include #include main() { char *s1="AbDeG"; char *s2="AbdEg"; s1+=2;s2+=2; printf("%d\n",strcmp(s1,s2)); }