Computer Science, asked by srinija12169, 6 months ago

write a program to perform string concatenation​

Answers

Answered by sorathiyamanan24
0

Answer:

Example

#include <stdio.h>

#include <string.h>

int main()

{

char destination[] = "Hello ";

char source[] = "World!";

strcat(destination,source);

printf("Concatenated String: %s\n", destination);

Similar questions