我运行了你的代码,strin的值是top。在数字中没有这样的字符串。strin是一个char数组,一个char数组的...
<stdio.h> include <stdlib.h> char fun(char s,char t)//对两个字符串比较 { char ss=s,*tt=t;while((*ss)&&(*tt)){ ss++;tt++;} if(*tt)return(t);else return(s);} main(){ char a[20],b[10],*p,*q;int i;printf("Input 1th string:");gets(a);printf("Input ...
以下对C语言字符数组描述中,错误的是( )。A.可以用strcmp()函数比较两个字符串的大小B.可以在赋值语句中通过赋值运算符
下列对C语言字符数组的描述中错误的是( )A.可以用关系运算符对字符数组中的字符串进行比较B.字符数组可以存放字符串C.可以用strcpy函数对字符数组中的字符串进行复制