Question: Write a program in C that reads in 4 strings and sorts them based on their length. You can use the code from the selection
Write a program in C that reads in 4 strings and sorts them based on their length. You can use the code from the selection sort to help solve this problem. **Requirements** - The strings should be read into a 2D array of `char` with size $4 \times 32$ using `fgets`. - Remove the newline character captured by the input. - Print the sorted strings. - Save your code as `read_strings.c`. **Example Run** ``` String 1: Naomi String 2: Alex String 3: Holden String 4: Bo 1. Holden 2. Naomi 3. Alex 4. Bo ```
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
