C strncat() Function

You are Here:

C strncat() Function

The strncat() function appends the source string to the destination string up to the specified length.

Example

C Compiler
#include <stdio.h> #include <string.h> int main() { char src[50] = ".com"; char dest[50] = "wikimass"; strncat(dest, src, 2); printf("destination string: %s", dest); return 0; }

Output

destination string: wikimass.c

Syntax

char *strncat(char *dest, const char *src, int n);

Parameter Values

ValueTypeExplanation
destRequiredSpecifies the destination string.
srcRequiredSpecifies the source string.
nRequiredSpecifies the length of the source string to be appended to the destination string.

Return Value

ValueExplanation
StringReturns a string where the specified the length of 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.

Share this Page

Meet the Author