Question: Modify the following code so If no command line arguments are given, sort the hardcoded test data as before. If there are command line arguments,
Modify the following code so If no command line arguments are given, sort the hardcoded test data as before.
If there are command line arguments, convert them to integers and use them values to
initialize the data array to be sorted. #include
#include
int mainint argc, char argv
int i;
fprintfstderr "I was invoked with the command: s
argv;
if argc
fprintfstderr "The command line arguments are:
;
fori ; i argc; i
fprintfstderr argvdas string: s
as int: d
as int in hex: X
i argvi atoiargvi atoiargvi;
else
fprintfstderr "There were no command line arguments.
;
exit;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
