Question: Write a c program, named Sortinglist , that reads two to four integers from t he command line arguments and returns the sorted list of
Write a c program, named Sortinglist, that reads two to four integers from the command line arguments and returns the sorted list of the integers on the standard output screen. You need to use strtol() function to convert a string to a long integer. For instance,
>sortit 5 0 7 93
>The sorted list is 0, 5, 7, 93
>sortit 1 q 10
>sortit: invalid input p.
>sortit
>usage: sortit num1 num2 num3!
The source code of a c file
Screenshots that show successful execution of the testing cases such as 1. invalid input, 2. wrong usage (not enough arguments)
You need to use a command-line argument method.
Include format error checking, and input validation is required.
Follow the coding format as the above example.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
