29.11.2016, 22:38
"This function concatenates (joins together) two strings into the destination string."
Ex:
it would put them all together, like "ABC".
Ex:
PHP код:
new example[4];
strcat( example, "A" );
strcat( example, "B" );
strcat( example, "C" );