CHALLENGE 3.15.2: Print two strings in alphabetical order. ACTIVITY Print the two strings, firstString and secondString,
Posted: Mon Jun 06, 2022 4:45 pm
CHALLENGE 3.15.2: Print two strings in alphabetical order. ACTIVITY Print the two strings, firstString and secondString, in alphabetical order. Assume the strings are lowercase. End with newline. Sample output: capes rabbits. 1 #include <stdio.h> 2 #include <string.h> 3 4 int main(void) ( 5 6 7 8 9 10 11 12 13 14) char firststring[50]; char secondstring[50]; scanf("%s", firststring); scanf("%s", secondstring); y Your solution goes here / return 0; > The juny Al