下面函数的功能是_____。sss(char s[]){ int i = 0;while(s[i])i++;return i;}
举一反三
- 下面函数的功能是。sss(s)char s[ ];{ int i=0;while( s[i]) i++ ;return i; }
- 下面函数的功能是。sss(s,t)char s[ ],t[ ];{ int i=0;while( t[i]) { s[i]=t[i]; i++ ; }s[i]= '\0'; }
- 以下函数的功能是________。int length(char *s){int i;for(i=0;s++!='\0';i++);return(i);}
- 下面函数的功能是________。 sss(char *s, char *t) { int i=0;while( t[i]){ s[i]=t[i]; i++ ; } s[i]= '\0'; }? 求字符串的长度|比较两个字符串的大小|将字符串s复制到字符串t中|将字符串t复制到字符串s中
- 10.有如下程序: #include void fun(char s[]) { int i ; char c; c=s[0]; for(i=1;s[i]!=’\0’; i++) s[i-1]=s[i]; s[i-1]=c; } main() { char s[10]=”BEIJING”; int i ; for(i=1; i<=4; i++) fun(s); puts(s); } 函数fun的功能是_________。