Page 1 of 1

CHALLENGE 3.13.2: Print two strings in alphabetical order. ACTIVITY Print the two strings, firstString and secondString,

Posted: Fri Jul 08, 2022 6:16 am
by answerhappygod
Challenge 3 13 2 Print Two Strings In Alphabetical Order Activity Print The Two Strings Firststring And Secondstring 1
Challenge 3 13 2 Print Two Strings In Alphabetical Order Activity Print The Two Strings Firststring And Secondstring 1 (62.43 KiB) Viewed 48 times
In C language.
CHALLENGE 3.13.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 415226.2573686.qx3zqy7 1 #include <stdio.h> 2 #include <string.h> 3 4 int main(void) { 5 6 7 8 9 10 11 12 13 14} Run char firstString[50]; char secondString[50]; scanf("%s", firstString); scanf("%s", secondString); /* Your solution goes here return 0; Doll 1 test passed All tests passed