diff --git a/wiki/strcat.md b/wiki/strcat.md new file mode 100644 index 0000000..27fa5a2 --- /dev/null +++ b/wiki/strcat.md @@ -0,0 +1,14 @@ +# STRCAT +Strcat (string concatenate) is a function that takes two chars lists as a parameter and write the second at this end of the first (like strcat in C) + +## params +1. chars list +2. chars list + +## example +``` +strcat("y", "o") "y" => "yo" +strcat("y", "") "y" => "y" +strcat("", "o") "" => "o" +strcat("hello ", "world!") => "hello world!" +``` \ No newline at end of file