9951 explained code solutions for 126 technologies


cConcatenate two strings


#include <string.h>
strcat(x,y);ctrl + c
include <string.h

Name of library to be included

strcat(x,y)

Function to concatenate the string y to string x (note: x string need to have a length equal or greater than length of x+y)