c++,請教用void 定義的函數怎麼輸出結果,例如void str_cat(char*p1,char*p2);還有利用2個函數求結果,怎麼輸出結果,例如
上面的str_cat函數和int str_len(char*p1,char*p2)函數,得出拼接的字符串和其長度。涉及的什麼知識,我到c++ primer plus上去學學!
其中用指針n傳出參數
比如
char s1[100]="hello ";
char s2[]="world";
int n = 0;
str_cat(s1, s2, &n);
printf("%s\n", s1);
printf("%d", *n);