Next Previous Contents

64. strcat

Synopsis

Concatenate two strings

Usage

String_Type strcat (String_Type a, String_Type b)

Description

The strcat function takes two string valued quantities, a and b, concatenates them together and returns the result.

Example

    strcat ("Hello ", "World");
produces the string "Hello World".
Notes

This function is equivalent to the binary operation a+b.

See Also

sprintf, create_delimited_string


Next Previous Contents