HW_1
HW_1) Problem _1: Description: I included <stdio.h> and <math.h> so that i'm able to code. I had to google how to allow input from the user to convert the desired measurements.I came across "scanf" which allowed input from float. The rest was just simple conversions by assigning values. Rinse and repeat for the rest of the homework given. /* PRoblem_1 */ #include <stdio.h> #include <math.h> int main () { float meters, Miles; /* inputer meters from user */ printf ("enter length in meters: "); scanf("%f", &meters); /* conversion from meters to miles */ Miles=...