Concatenate two strings
String_Type strcat (String_Type a, String_Type b)
The strcat function takes two string valued quantities, a and
b, concatenates them together and returns the result.
strcat ("Hello ", "World");
produces the string "Hello World".
This function is equivalent to the binary operation a+b.
sprintf, create_delimited_string