char * strcat(char *dest, const char *src) { strcpy(dest + strlen(dest), src); return ... is often regarded as a safer and more useful version of strncat.
確定! 回上一頁