Question: C programming 1 String Merging Write a program that reads two strings s1 and s2 from the keyboard and merges them to a string s3.
C programming
1 String Merging
Write a program that reads two strings s1 and s2 from the keyboard and merges them to a string s3. Strings s1 and s2 are statically allocated whereas s3 is dynamically allocated to fit exactly s1 and s2. The two original strings are no longer than 100 characters long. Use the following function to merge the two strings. char *stringMerge(char s1[], char s2 []);
Example:
Enter the first string: Hello world
Enter the first string: This is my first program
Hello worldThis is my first program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
