Answers for "strcat define"

0

strcat

#include <stdio.h>
#include <string.h>
int main()
{
     char s1[10] = "Hello";
     char s2[10] = "World";
     strcat(s1,s2);
     printf("Output string after concatenation: %s", s1);
     return 0;
}
Posted by: Guest on December-29-2021

Code answers related to "strcat define"

Browse Popular Code Answers by Language