下面函数的功能是。sss(s,t)char s[ ],t[ ];{ int i=0;while( t[i]) { s[i]=t[i]; i++ ; }s[i]= '\0'; }
举一反三
- 下面函数的功能是________。 sss(char *s, char *t) { int i=0;while( t[i]){ s[i]=t[i]; i++ ; } s[i]= '\0'; }? 求字符串的长度|比较两个字符串的大小|将字符串s复制到字符串t中|将字符串t复制到字符串s中
- 下面函数的功能是。sss(s)char s[ ];{ int i=0;while( s[i]) i++ ;return i; }
- 下面函数的功能是_____。sss(char s[]){ int i = 0;while(s[i])i++;return i;}
- 中国大学MOOC: 输入hello↙,写出下面程序的运行结果。#include <stdio.h>#include <string.h>int main(){char s[80],t[200]; int i,sl ;gets(s);sl = strlen(s);for(i=0 ;i<sl ;i++) t[i]=s[sl-i-1] ;for (i=0; i<sl; i++) t[sl+i] = s[i];t[sl+i]=\0 ;puts(t); return 0;}
- 以下不能将s所指字符串正确复制到t所指存储空间的是( ) A: do{*t++=*s++;}while(*s ); B: for(i=0;t[i]=s[i];i++); C: while(*t=*s){t++;s++} D: for(i=0,j=0;t[i++]=s[j++]; );