SilverScreen Solid Modeler

strcat

strcat

Previous topic Next topic  

strcat

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

char *strcat( char *s1, char *s2 )

 

char *s1;         /* a string */

char *s2;         /* a string */

 

 




Synopsis

#include "string.h"

 

The strcat function concatenates string s2 onto the end of s1.

 

 

Parameters

s1 and s2 are null-terminated strings.

 

 

Return Value

strcat returns s1 .

 

 

See Also

strncat