有以下函数intaaa(char*s){char*t=s;while(*t++);t--;return(t-s);}以下关于aaa函数的功能的叙述正确的是().
举一反三
- 有以下函数,关于该函数的功能的叙述正确的是______。int aaa(char *s){ char *t=s;while(*t++);t--;return(t-s);}
- 有以下函数 int fun(char *s) { char *t=s; while(*t) t++; return(t-s); } 该函数的功能是( ).
- 函数fun的功能是: int fun(char *s){ char *t=s; while(*t++); return (t-s); }
- 以下函数的功能是() intfun(char*s) { char*t=s; while(*t++) ; t--; return(t-s); } A: 求字符串s的长度 B: 比较两个串的大小 C: 将串s复制到串t D: 求字符串s所占字节数
- 以下与库函数strcmp(char *s,char *t)功能相等的程序段是( )。? int strcmp3(char *s,char *t){ for ( ; *t==*s; ) { if (!*t) return 0 ; t++ ; s++ ; } return (*s-*t) ;}|int strcmp2(char *s,char *t){ for ( ; *s++==*t++; ) if (!*s) return 0 ; return (*s-*t) ;}|int strcmp1(char *s,char *t){ for ( ; *s++==*t++; ) if (*s=='\0') return 0 ; return (*s-*t) ;}|int strcmp4(char *s,char *t){ for ( ; *s==*t;s++,t++ ) if (!*s) return 0 ; return (*t-*s) ;}