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