C语言 用函数调用方式,实现字符串的复制 急急急!!跪谢

如题所述

void copy(char *a,char *b)
{
while(*b!='\0')
{
*a=*b;
a++;
b++;
}
*a='\0';
}
温馨提示:内容为网友见解,仅供参考
无其他回答

急急急急急急急急急!!!、拜托各位...C语言的的高手们!!!
include <ctype.h> define LOWERCASE(c) (((c)>='a') && ( (c)<='z' ) )int main(){ char ch='\\0';int ndigit=0, nchars=0;printf("input a string end with '$':\\n");while((ch=getchar())!='$'){ if (isdigit(ch)) ndigit ++;else if (LOWERCASE(ch))nchars++;...

相似回答