Answers for "connect strings C"

C
2

how to combine strings in c

#include <stdio.h>
#include <string.h>
int main() {
	char str[80];
strcpy(str, "these ");
strcat(str, "strings ");
strcat(str, "are ");
strcat(str, "concatenated.");
printf("%s\n", str);
}
Posted by: Guest on February-06-2021

Code answers related to "C"

Browse Popular Code Answers by Language