Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

c concatenate strings

char str[80];
strcpy(str, "these ");
strcat(str, "strings ");
strcat(str, "are ");
strcat(str, "concatenated.");
 
PREVIOUS NEXT
Tagged: #concatenate #strings
ADD COMMENT
Topic
Name
1+3 =