strcat
書式
char *strcat(char *s1,const char *s2);
機能
ポインタs1が指す文字列の末尾にポインタs2が指す文字列にコピーする。
戻り値
コピー先の先頭文字へのポインタ。
ヘッダーファイル
string.h
使用例
char s1[32] = "Do you like ";
char s2[16] = "K's style?";
strcat(s1,s2);
char s2[16] = "K's style?";
strcat(s1,s2);