解题思路:
注意事项:
参考代码:
#include <stdio.h> #include <string.h> int main(void) { char s[100], s2[100]; scanf("%s%s", s, s2); strcat(s, s2); puts(s); return 0; }
0.0分
0 人评分
校门外的树 (C语言代码)浏览:751 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:674 |
C语言程序设计教程(第三版)课后习题5.7 (C++代码)浏览:879 |
【数组的距离】 (C语言代码)浏览:787 |
简单的a+b (C++语言代码)浏览:895 |
C语言考试练习题_排列 (C语言代码)浏览:767 |
字符逆序 (C语言代码)浏览:645 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:756 |
C语言训练-大、小写问题 (C语言代码)浏览:719 |
拆分位数 (C语言代码)浏览:558 |