Answers for "how to concatenate two string in c strcan"

C
19

c concatenate strings

char str[80];
strcpy(str, "these ");
strcat(str, "strings ");
strcat(str, "are ");
strcat(str, "concatenated.");
Posted by: Guest on March-22-2020
3

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("%sn", str);
}
Posted by: Guest on February-06-2021
1

objective c strings concatenate

- (NSString *)strCat: (NSString *)one: (NSString *)two
{
    NSString *myString;
    myString = [NSString stringWithFormat:@"%@%@", one , two];
    return myString;
}
Posted by: Guest on December-04-2020

Code answers related to "how to concatenate two string in c strcan"

Code answers related to "C"

Browse Popular Code Answers by Language