CS 201, Spring 2000 Assignment #10: 10 Points. Due Date: Friday, 4/21/00. (3) 1. Write a program that uses function strcmp() to compare two strings input by the user. The program should state whether the first string is less than, equal to, or greater than the second string by alphabetic order. Test all three cases.** (3) 2. Exercise 5.35.** (4) 3. Use the string comparison functions and the bubble sort algorithm for sorting arrays to write a program which alphabetizes an array of character strings input by the user. Declare an array of character strings which can hold up to 10 strings, each up to 20 characters long. Enter the strings one per line and use a blank line to end the input if fewer than 10 strings are entered.** **For full credit, turn in fully commented program listings, including your name and the problem number, and the output from test runs exactly as produced by the program.