Let Us C Solution Chapter 15 Strings | Exercise B
Duration: 3:28 Min | Sep 10, 2023
Let us C Chapter 15 Exercise B (a)
int main()
{
char *str1 = "United";
char *str2 = "Front";
char *str3;
str3 = strcat (str1, str2);
printf("%s\n", str3);
return 0;
}