编写一个程序,主函数中定义二个或字符串,调用子函数MyStrCat),实现字符串的连接,主函数中输出结果。

日期:2017-04-24 10:21:00 人气:1

编写一个程序,主函数中定义二个或字符串,调用子函数MyStrCat),实现字符串的连接,主函数中输出结果。

a) 形参用引用变量的方法 #include using namespace std;char * MyStrCat(char *&dst, char *&src){ char *p=dst, *q=src; while(*p)p++; while(*q)*p++=*q++; *p=0; return dst;}int main(){ char s[100],d[100]; cin>>d>>s; MyStrCat(d,s); c
    A+
热门评论