Strncat Function In C Code Example


Example: strncat c

#include <stdio.h> #include <string.h>  int main () {    char src[50], dest[50];     strcpy(src,  "This is source");    strcpy(dest, "This is destination");     strncat(dest, src, 15);     printf("Final destination string : |%s|", dest);        return(0); } output: Final destination string : |This is destinationThis is source|

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy