C strcat() Function
You are Here:
C strcat() Function
The strcat()
function appends the source string to the destination string.
A concatenation of two strings can be done using this function.
Example
C Compiler
#include <stdio.h>
#include <string.h>
int main()
{
char src[50] = ".com";
char dest[50] = "wikimass";
strcat(dest, src);
printf("destination string: %s", dest);
return 0;
}
Output
destination string: wikimass.com
Syntax
char *strcat(char *dest, const char *src)
Parameter Values
Value | Type | Explanation |
---|---|---|
dest | Required | Specifies the destination string. |
src | Required | Specifies the source string. |
Return Value
Value | Explanation |
---|---|
String | Returns a string where the source string is appended to the destination string. |
Reminder
Hi Developers, we almost covered 98% of String functions and Interview Question on C with examples for quick and easy learning.
We are working to cover every Single Concept in C.
Please do google search for:
Join Our Channel
Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.
This channel is primarily useful for Full Stack Web Developer.