#include<stdio.h> #include<string.h> int main() { char st1[30]="My name is"; char st2[30]; printf("input your name:\n"); gets(st2); strcat(st1,st2); puts(st1); }
posted on 2022-04-12 20:03 王陈锋 阅读(27) 评论(0) 编辑 收藏 举报