- Challenge 3 15 2 Print Two Strings In Alphabetical Order Activity Print The Two Strings Firststring And Secondstring 1 (18.05 KiB) Viewed 24 times
CHALLENGE 3.15.2: Print two strings in alphabetical order. ACTIVITY Print the two strings, firstString and secondString,
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
CHALLENGE 3.15.2: Print two strings in alphabetical order. ACTIVITY Print the two strings, firstString and secondString,
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