Information AboutStrcat |
| CATEGORIES ABOUT STRCAT | |
| c standard library | |
|
In Computing , the C Programming Language offers a Library Function called strcat that allows one memory block to be appended to another memory block. Both memory blocks are required to be null-terminated. Since, in C, strings are not first-class Datatype s, and are implemented as blocks of ASCII Byte s in memory, strcat will effectively append one string to another given two Pointer s to blocks of allocated memory. The name strcat is an abbreviation of "string concatenate". For example:
Here are two possible implementation of strcat:
{
return orig_dest; }
|
|
|