write a program to perform string concatenation
Answers
Answered by
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