“Соглашать строку в c” Ответ

C Конкатенате строки

char str[80];
strcpy(str, "these ");
strcat(str, "strings ");
strcat(str, "are ");
strcat(str, "concatenated.");
Plimpton

Как объединить струны в 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);
}
Coding is not Fun

c Согласно и выделяйте строку

// null protected
char* strconcat(char *str1, const char *str2)
{
	char *str = NULL;
    size_t len1 = 0;
    size_t len2 = 0;

	if (str1)
    	len1 = strlen(str1);
    if (str2)
    	len2 = strlen(str2);
    if (!(str = calloc(sizeof(char), (len1 + len2 + 1))))
        return NULL;
    if (str1)
        memcpy(str, str1, len1);
    if (str2)
        memcpy(str + len1, str2, len2);
    return (str);
}
Clever Cowfish

Соглашать строку в c

#define TESTING opa
Renato Gracin

Соглашать строку в c

try to add answer
Renato Gracin

Соглашать строку в c

try to work
Renato Gracin

Ответы похожие на “Соглашать строку в c”

Вопросы похожие на “Соглашать строку в c”

Больше похожих ответов на “Соглашать строку в c” по C

Смотреть популярные ответы по языку

Смотреть другие языки программирования