将两个字符串合并为一个字符串而且输出

#include<stdio.h> #include<string.h> //将两个字符串合并为一个字符串而且输出 int main(void) { char str1[20] = {"Hello "}; char str2[20] = {"World "}; char *p1,*p2; p1 = str1; p2 = str2; //指针p1遍
相关文章
相关标签/搜索