Write a function inOrder that takes three string (char*) arguments. The function
ID: 3631241 • Letter: W
Question
Write a function inOrder that takes three string (char*) arguments. The function combines the first two strings, in alphabetical order, and stores the result in the third string. No spaces or other characters are added in between the strings.You may use functions from <string.h> in this function. You might consider strcmp, strcat, strcpy.
Example: If string1 is "zoom", string 2 is "abc", then string3 contains "abczoom" after your function returns.
The function has no return value. Assume that the third string is large enough to hold the all the characters from the other two strings.
-Thank You