Write a C program, string_to_lower_args.c, which reads command line arguments then prints them out. When it prints out, it will convert all upper case letters to lower case. Note: If there are any characters that are not Upper Case letters, they do not need to be converted. Note: The apostrophe character causes problems when trying to print it out. There will be no tests using an ' in this activity. The output from your program should look exactly like this: $ dcc string_to_lower_args.c -o string_to_lower_args $ ./string_to_lower_args Hello World! hello world! $ ./string_to_lower_args Its Over 9000! its over 9000! $ ./string_to_lower_args KAMEHAMEHA kamehameha Need a Hint? There's a way to decide if characters are upper case if they're between 'A' and 'Z'. They can then be treated as numbers to convert to lower case. Otherwise, there is a C library called ctype.h that might have some useful functions! File Edit View Terminal Tabs Help 1511 c_check string_to_lower_args.c string_to_lower_args.c:13:8 warning: ASCII code 65 used, replace with 'A' if(*t>=65 && *t<=90)/* if it is an uppercase then addd 32 to make it lowercas Terminal string_to_lower_args.c:13:18 warning: ASCII code 90 used, replace with 'Z' if(*t>=65 && *t<=90)/* if it is an uppercase then addd 32 to make it lowercas e */ dcc -o string_to_lower_args string_to_lower_args.c Test 0 (./string_to_lower_args Hello World!) failed (errors) Your program produced these errors: Execution failed because the last newline was missing. Your program produced all the expected output, except the last newline ('\n') was missing. For more information go to https://comp1511unsw.github.io/dcc/missing_newline .html You can reproduce this test by executing these commands: dcc -o string_to_lower_args string_to_lower_args.c /string to lower args Hello World! Test 1 (./string_to_lower_args Its Over 9000!) failed (errors) 2 *string_to_lower_args.c (/tmp_amd/cage/export/cage/3/z5356267) - gedit File Edit View Search Tools Documents Help *string_to_lower_args.c x 1 #include 2 char* toLower (char *s) { 3 char *t-s; 4 while(*t) { 5 if (*t>=65 && *t<=90) 6 *t=*t+32; 7 t++; 8} 9 return s; 10} 11 char** converttolower(char **s) { 12 while(*s) { 13 toLower (*s); 14 s++; 15 > 16 return s; 17} 18 int main(int argc, char* argv[]) 19 20 converttolower(argv); 21 for(int i=1;i