From 78bc62c044b472c8949e06f596a73992dbaf53f3 Mon Sep 17 00:00:00 2001 From: starnakin Date: Wed, 26 Jul 2023 10:26:06 +0000 Subject: [PATCH] Add wiki/strcat.md --- wiki/strcat.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 wiki/strcat.md 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