將兩個字符串合併爲一個字符串而且輸出

#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遍
相關文章
相關標籤/搜索