This shows you the differences between two versions of the page.
|
c:string.h:strcat [2013/02/17 02:12] Daniel Gohlke |
c:string.h:strcat [2024/02/16 01:06] (current) |
||
|---|---|---|---|
| Line 3: | Line 3: | ||
| <code c> | <code c> | ||
| - | #include <stdlib.h> | + | #include <stdlib.h> |
| - | char *strcat(char *str1, const char *str2); | + | char *strcat(char *str1, const char *str2); |
| </code> | </code> | ||
| + | |||
| + | ===== description of strcat ===== | ||
| The strcat function concatenates two strings.\\ | The strcat function concatenates two strings.\\ | ||
| str1 = target string to be added to source\\ | str1 = target string to be added to source\\ | ||