Question: Write a program that finds either the largest or smallest of the ten numbers as command-line arguments. With l for largest and s for smallest
Write a program that finds either the largest or smallest of the ten numbers as command-line arguments. With l for largest and s for smallest number, if the user enters an invalid option, the program should display an error message.
Example runs of the program:
./find_largest_smallest l 5 2 92 424 53 42 8 12 23 41 output: The largest number is 424
./find_largest_smallest s 5 2 92 424 53 42 8 12 23 41 output: The smallest number is 2
1) Name your program numbers.c.
2) Use atoi function in
3) Generate the executable as find_largest_smallest.
gcc Wall o find_largest_smallest numbers.c
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
