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
India Languages,
3 months ago
Geography,
3 months ago
Math,
7 months ago
Social Sciences,
7 months ago