码迷,mamicode.com
首页 > 编程语言 > 详细

C++:基础编程题

时间:2020-06-03 20:20:58      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:编程   void   end   cat   containe   pause   字符串   code   main   

字符数组与字符数组的连接

void strcat(char s[], char ct[]) {
	int i=0, j=0;
	while (s[i] != ‘\0‘) i++;
	while (ct[j] != ‘\0‘) s[i++] = ct[j++];
	s[i] = ‘\0‘;
}

int main(void) {
	char a[40] = "wt ";
	char b[20] = "is a postgraduate";
	strcat(a, b);
	cout << "连接后的字符串为:" << endl;
	cout << a<<endl;
	system("pause");
	return 0;

C++:基础编程题

标签:编程   void   end   cat   containe   pause   字符串   code   main   

原文地址:https://www.cnblogs.com/wt-seu/p/13039566.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!